Install ruby 2.3.0 (or any ruby will probably work).
gem install bundler # if needed
bundle install
bundle exec rake db:migrate
To get all the deps and the database set up properly. To start the server:
bundle exec rails s
Now rails will listen at localhost:3000 for your requests.
Go to camps/new to create a new camp and to camps to see a list of camps.
Run them with:
bundle exec rspec spec
Currently sqlite is used as database. We will stick to this in development but set up postgres in production. Install sqlite with your favourite package manager and you should be up and running right away.
In development mode mailcatcher is configured to catch emails locally for easier testing.