Todo Rails Sample App
- ruby 2.1.6
- bundler
Clone the project
git clone git@github.com:challengepost/todo-rails.git your_project /path/to/new/project
cd /path/to/new/project/
Install dependencies
gem install bundler
bundle install
bundle install --binstubs
Setup the database
cp config/database-example.yml config/database.yml
rake db:setup db:seed
- checkout a feature branch
- write failing tests
- write just enough code to make the tests pass
- push to github (git push origin [branch_name]])
- create a pull request
- get your code reviewed
- deploy to staging (rake deploy:staging)
- get your feature reviewed
- deploy to production