master
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
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request