Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 463 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 463 Bytes

recipeTracker

Social app to create, save, and view recipes

Backend Prerequisites Ruby on Rails PostgreSQL

Backend Installation Instructions Once the repo is cloned, run the Rails server:

cd recipe_tracker_backend
bundle install

Install the database:

rails db:create
rails db:migrate
rails db:seed

Run the server

rails s

You may now proceed to start the front end here.