Created
January 18, 2012 16:09
-
-
Save mikeymicrophone/1633767 to your computer and use it in GitHub Desktop.
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
These are the steps you will probably need to take, to get a new Rails app running. | |
1. install Rails | |
2. create a new Rails app | |
3. navigate into the root directory of your app | |
4. generate a scaffold | |
5. run your database migration | |
6. start the server |
also, steps 5 and 6 can be done in either order.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
once your app is running, open a browser and visit http://localhost:3000/resource_names
(a pluralized version of the word you used for your resource name - the thing you generated)