From 5592c4710a0b7488edbadda93502bfd578aaed18 Mon Sep 17 00:00:00 2001 From: Gord Tanner Date: Thu, 22 Jan 2015 17:53:18 -0500 Subject: [PATCH] Created a Vagrantfile Install instructions: - clone repo - (ensure you have VirtualBox and Vagrant) - run configure.sh This will create a VM, install all the software. Once vm is provisioned it will then bundle install and configure your database To start the service you can then run: vagrant ssh -c 'cd /vagrant; rails s' --- .gitignore | 2 ++ Vagrantfile | 38 ++++++++++++++++++++++++++++++++++++++ configure.sh | 16 ++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 Vagrantfile create mode 100755 configure.sh diff --git a/.gitignore b/.gitignore index 88ca74ce..d1889d2c 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,5 @@ log/*.log tmp .DS_Store + +.vagrant diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..ce0c0c87 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,38 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +$script = <