Moved the Vagrant stuff around to keep the root tidy

This commit is contained in:
Daniel Quinn 2016-01-24 21:35:05 +01:00
parent 54366c1d27
commit 0612cd53b7
2 changed files with 2 additions and 3 deletions

5
Vagrantfile vendored
View File

@ -6,11 +6,10 @@ Vagrant.configure(VAGRANT_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
# Provision using shell
#config.vm.provision "shell", path: "vagrant/setup.sh"
config.vm.host_name = "dev.paperless"
config.vm.synced_folder ".", "/opt/paperless"
config.vm.provision "shell", path: "vagrant/setup.sh"
config.vm.provision "shell", path: "scripts/vagrant-provision"
# Networking details
config.vm.network "private_network", ip: "172.28.128.4"
end