This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # create new rails app | |
| rails new routes_and_stuff | |
| cd routes_and_stuff | |
| # generate a user scaffold | |
| rails generate scaffold user | |
| bundle exec rake db:migrate | |
| # checkout routes | |
| bundle exec rake routes |