- Create a new Ruby on Rails box on Nitrous.io https://www.nitrous.io/app#/boxes/new
(All the below steps will be in your Nitrous box)
- Clone the mRelief sample screening app:
git clone https://github.com/mRelief/mrelief_snap_screener_example.git
- Go into the app directory:
cd mrelief_snap_screener_example
- Install dependencies with bundle (this may take a few minutes):
bundle install
- Create, migrate, and seed the database:
rake db:create
rake db:migrate
rake db:seed
- Run the app:
rails s