wings/Vagrantfile

10 lines
273 B
Ruby
Raw Normal View History

2017-06-20 22:42:14 +00:00
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