This commit is contained in:
Matthew Scragg 2013-09-25 15:27:25 -05:00
commit 7b39666270
10 changed files with 136 additions and 0 deletions

15
Vagrantfile vendored Normal file
View file

@ -0,0 +1,15 @@
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "precise64"
config.vm.synced_folder "srv/", "/srv/"
config.vm.provision :salt do |salt|
salt.minion_config = "srv/minion"
salt.run_highstate = true
end
end
Vagrant::Config.run do |config|
config.vm.forward_port 80, 8000
config.vm.forward_port 10001, 10001
end