#Day19
###Steps to create Rails app
- rails new
- Update Gemfile and run bundle
- update database yml
- rake db:create
- rails g migration create (table)
- rails edit migration
- rake db:migrate
- create models/*.rb
- run annotate
- add relationships
- test with rails console
- edit seeds
- rake db:seeds
####Front-end:
- Edit routes
- Do controllers to match up with the routes
- test and iterate
To remove files from the controller: rm app/views/*/create.html.erb
Steps from Kriss to create Rails app