- PostgreSQL running under local user (on OSX install with Homebrew)
- Ruby 2.1.2
- Bundler
http://nvie.com/posts/a-successful-git-branching-model/
Make sure you have your Figaro configuration correctly set up. Here's a sample setup:
common: &common
DATABASE_USERNAME: me
test:
<<: *common
DEVISE_SECRET: super-secret
SECRET_KEY_BASE: maybe-even-more-secret
development:
<<: *common
DEVISE_SECRET: super-secret
SECRET_KEY_BASE: maybe-even-more-secret
$ rake db:migrate
$ rake db:setup
With a correct setup, start the server.
$ bin/rails server
$ bundle exec guard