add vagrant setup

This commit is contained in:
Jakob Schrettenbrunner
2017-06-21 00:42:14 +02:00
parent 18b7b30057
commit f38d2996e9
4 changed files with 51 additions and 0 deletions

9
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,9 @@
Vagrant.configure("2") do |cfg|
cfg.vm.box = "ubuntu/xenial64"
cfg.vm.synced_folder "./", "/home/ubuntu/go/src/github.com/schrej/wings.go"
cfg.vm.provision :shell, path: ".dev/vagrant/provision.sh"
cfg.vm.network :private_network, ip: "192.168.50.4"
end