master
db/
rw-r--r--
90 B
rw-r--r--
219 B
rw-r--r--
573 B
rw-r--r--
1.0 KB
rw-r--r--
102 B
rw-r--r--
30 B
rw-r--r--
6 B
rw-r--r--
2.2 KB
rw-r--r--
1.1 KB
rw-r--r--
516 B
rw-r--r--
2.6 KB
rw-r--r--
13.1 KB
rw-r--r--
1.0 KB
rw-r--r--
129 B
rw-r--r--
1.2 KB
rw-r--r--
272 B
rw-r--r--
307 B
rw-r--r--
130 B
rw-r--r--
1.4 KB

Build Status Coverage Status

README

The easiest way to get up and running is to use vagrant.

Once you have vagrant installed you can run:

  $ vagrant up

The first time you run the above command it may take a while to get things set up. After that you can ssh into your vagrant instance.

  $ vagrant ssh
  $ cd /vagrant

The last step is to run the application. From the vagrant ssh shell run:

  $ bin/foreman start

You should now have a fully running instance of the application. The /vagrant folder in the VM is mounted to match your working directory on your host machine. So you are free to use whatever editor you like.

You can access the application by opening a browser window to http://localhost:3000/

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request