Install Ruby 2.2.5, probably using rbenv.
Install PostgreSQL, probably using homebrew.
Download the source code:
git clone git@github.com:data-creative/law-schools-reporter.git
cd law-schools-reporter/
bin/setup # installs package dependencies and preps the databaseSeed the database with schools and employment data.
bundle exec rake db:seedRun interactive development console:
bin/rails cServe locally:
bin/rails sRun tests:
bundle exec rspec spec/Gain access to the law-school-reporter heroku application.
Then deploy:
git checkout master
git pull origin master
git push heroku masterOr deploy from a branch:
git checkout mybranch
git pull origin mybranch
git push heroku mybranch:master