diff options
| author | mo khan <mo@mokhan.ca> | 2015-05-23 22:45:43 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-05-23 22:45:43 -0600 |
| commit | 3fd18f33708ff7056bf299dcf17ecb40e334b4e6 (patch) | |
| tree | e6dad05c27f6546575b1df66d57e6f47cb4aa22e /README.md | |
| parent | 0b45e34e12b0a651c3584cb3bec0bfbf8f4714f4 (diff) | |
update the readme.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 43 |
1 files changed, 26 insertions, 17 deletions
@@ -4,29 +4,38 @@ ## README -This README would normally document whatever steps are necessary to get the -application up and running. +The easiest way to get up and running is to use [vagrant](https://www.vagrantup.com/). -Things you may want to cover: +Once you have vagrant installed you can run: -* Ruby version +```bash + $ vagrant up +``` -* System dependencies +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 and run +the setup script. -* Configuration +```bash + $ vagrant ssh + $ cd /vagrant + $ bin/setup +``` -* Database creation +The last step is to run the application. From the vagrant ssh shell run: -* Database initialization +```bash + $ bin/foreman start +``` -* How to run the test suite +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. -* Services (job queues, cache servers, search engines, etc.) +## Contributing -* Deployment instructions - -* ... - - -Please feel free to use a different markup language if you do not plan to run -<tt>rake doc:app</tt>. +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 |
