Add basic Vagrant configuration to build our dev environment.

This commit is contained in:
2013-11-04 22:53:48 +00:00
parent 20614b9be7
commit cef18d7638
4 changed files with 27 additions and 0 deletions

8
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,8 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "base"
config.vm.provision :shell, :path => ".vagrant/provision.sh"
config.vm.network "forwarded_port", guest: 5000, host: 8080
end