brew install chromedriver postgresql
git submodule init && git submodule update --recursive
bin/rake db:create db:migrate db:seed
RACK_ENV=test bin/rake db:create
bin/rake test
bin/foreman start --procfile=Procfile.development # boots UI and API, both in development mode with live reloads
bin/rackup -p 3000 # boots the API
bin/rackup full-stack.ru -p 3000 # boots pre-built UI (non-dev) and API (dev)
open "https://toolbelt.heroku.com/" # get the Heroku toolbelt
heroku login
heroku git:remote -a agile-direction-api
git push heroku head:master
heroku open