Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

Getting started

Philippe Dionne edited this page Nov 6, 2016 · 1 revision

Install gems, bower and npm packages:

$ bundle install
$ npm install
$ bower install

Copy default environment variables and configure in .env.local:

$ cp .env.default .env.local && $EDITOR .env.local

Run database migrations and add sample data:

$ rails db:setup
$ rails db:seed

Finally, launch with Foreman and hit localhost:5000:

$ foreman start

Clone this wiki locally