mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-03 14:02:59 +00:00
5 lines
187 B
Ruby
5 lines
187 B
Ruby
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 |