- git
- homebrew
git clone [email protected]:mapping-police-violence/mpv-rails-app.git cd mpv-rails-app/ brew install rbenv ruby-build postgres echo 'eval "$(rbenv init -)"' >> ~/.bash_profile rbenv install 2.2.4 rbenv rehash which ruby (verify that it returns a path that references .rbenv shims) gem install bundler rbenv rehash bundle
Start postgres (brew info postgres will have info about how to do this on your system) rake db:create rake db:migrate rake db:seed rake db:test:prepare rake (runs the tests)