Added vagrant support

This commit is contained in:
simon
2018-05-11 21:04:00 -04:00
parent 1a5d12a19f
commit e98575b23f
2 changed files with 18 additions and 0 deletions

5
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,5 @@
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network "forwarded_port", guest: 4567, host: 4567
end