This README would normally document whatever steps are necessary to get the application up and running.
Clone code
# install gem dependencies
bundle install
Database creation & initialization

# migrate the database to latest
rake db:migrate
# rolls the schema back to the previous version
rake db:rollback
# loads the seed data
rake db:seed
Create a model & migration
# plain model
rails generate model Item --no-fixture --no-test-framework
# plain migration
rails generate migration AddHiToUsers
How to run the test suite
Services (job queues, cache servers, search engines, etc.)
Deployment instructions