For a general overview of Work.nation, see https://github.com/worknation/work.nation.
bundle install
foreman start # to start server + sidekiq
# or
rails server # just server
rake db:setup # nukes dev db, creates it, loads seed data
If hosted on heroku, you can create seed data with:
heroku run[:detached] 'ALLOW_SEED_DATA=true SEEDS_USERS=7 rake db:seed' --app <HEROKU_APP_NAME>
bin/checks # run faster checks
bin/checks-all # run all checks
bin/rspec # rspec only
bin/cop # rubocop only
bin/shipit # runs all checks and pushes only if checks pass