diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-03-10 12:48:46 +0000 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-03-11 10:57:22 +0000 |
commit | 508e6ba621136a95807997c3ff664b6bee73f22f (patch) | |
tree | 3072d468f991da1d519440ad61573905d8114986 | |
parent | 73e1a58f1aa492be12fc5aed20ad40a0c5fc0ff6 (diff) |
Move Vagrantfile to repo root
For a better workflow
http://mysociety.github.io/installation-standards.html#silver
# Host
# Note that --recursive must be specified to include commonlib
# submodule
$ git clone --recursive git@github.com:mysociety/alaveteli.git
$ cd alaveteli && vagrant up
$ vagrant ssh
# Guest
$ cd /home/vagrant/alaveteli && bundle exec rake spec
-rw-r--r-- | Vagrantfile (renamed from config/Vagrantfile) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/Vagrantfile b/Vagrantfile index c1ac1ead7..d238fb8b6 100644 --- a/config/Vagrantfile +++ b/Vagrantfile @@ -15,7 +15,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "precise64" config.vm.box_url = "http://files.vagrantup.com/precise64.box" config.vm.network :private_network, :ip => "10.10.10.30" - config.vm.synced_folder "../.", "/home/vagrant/alaveteli", :owner => "vagrant", :group => "vagrant" + config.vm.synced_folder ".", "/home/vagrant/alaveteli", :owner => "vagrant", :group => "vagrant" config.ssh.forward_agent = true |