summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2015-09-29 21:31:48 -0600
committermo khan <mo@mokhan.ca>2015-09-29 21:31:48 -0600
commit99b6d0f90be9632b1b2095ebc491736e21111eb3 (patch)
tree8281fca076d5c459c6ada4d2fb47c298b11ff1d5
parent753e645fdd1b1278414c71b69290b02f1fc7e44a (diff)
update README.main
-rw-r--r--README.md39
-rw-r--r--README.rdoc28
2 files changed, 39 insertions, 28 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ad5cce6
--- /dev/null
+++ b/README.md
@@ -0,0 +1,39 @@
+## README
+
+Install [vagrant](https://www.vagrantup.com/).
+
+Then run:
+
+```bash
+ $ 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.
+
+```bash
+ $ vagrant ssh
+ $ cd /vagrant
+```
+
+The last step is to run the application. From the vagrant ssh shell run:
+
+```bash
+ $ bin/setup
+ $ bin/rails s
+```
+
+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
diff --git a/README.rdoc b/README.rdoc
deleted file mode 100644
index dd4e97e..0000000
--- a/README.rdoc
+++ /dev/null
@@ -1,28 +0,0 @@
-== README
-
-This README would normally document whatever steps are necessary to get the
-application up and running.
-
-Things you may want to cover:
-
-* Ruby version
-
-* System dependencies
-
-* Configuration
-
-* Database creation
-
-* Database initialization
-
-* How to run the test suite
-
-* Services (job queues, cache servers, search engines, etc.)
-
-* Deployment instructions
-
-* ...
-
-
-Please feel free to use a different markup language if you do not plan to run
-<tt>rake doc:app</tt>.