Generated the project with:
$ rails new reservester
Git initialize it with:
$ git init
Move the README from being rdoc to markdown with:
$ git mv README.rdoc README.md
Deployed with:
$ git push heroku master
Generated the development and test databases with:
$ rake db:create
Generated the blank resource with:
$ rails g resource restaurant
Ran the database migration with:
$ rake db:migrate
Installed Twitter Bootstrap with Less assets:
$ rails generate bootstrap:install less
Generated the base layout file:
$ rails g bootstrap:layout fluid
Overwrote the application.html.erb:
$ mv app/views/layouts/fluis.html.erb
app/views/layouts/application.html.erb
Generated a Photo Uploader:
$ rails generate uploader Photo
Generated the database migration to add a photo column:
$ rails g migration AddPhotoToRestaurants