- Do you ever feel overwhelmed by the crowded city traffic, glaring lights, and overwhelming sounds?
- Do you ever wish for quiet, open spaces lending you the chance to forget your daily stresses, and just drive away your worries?
- That’s why we created Get Lost. It’s an opportunity to take off for a Sunday drive with little forethought. Spontaneity deserves to be rewarded with bliss!
- Come and take an adventure with us and Get Lost!
Run rails s
and direct your browser to the port of choice. For example, http://localhost:3000
.
has_many user_adventures, dependent: :destroy
has_many adventures through user_adventures
has_secure_password
first_name:string
last_name:string
email:string
address:string
city:string
zipcode:integer
state:string
username:string
password:digest
belongs_to user
belongs_to adventure
has_many user_adventures, dependent: :destroy
has_many users through user_adventures
location:string
topography:string
- A
user
should be able to create a new account by providing their basic information. They should choose a unique username and set a password. - A
user
should be able to edit and update basic information. - A
user
should be able to delete their account 😪 - A
user
should be able to view a list of alladventures
filtered bytopography
- A
user
should be able to save anadventure
they like to their profile - A
user
should be able to delete anadventure
from their list of saved adventures - A
user
should be able to view the list ofadventures
that they have saved