Add basic Vagrantfile.
This commit is contained in:
parent
91c581e678
commit
7546030985
|
@ -0,0 +1,13 @@
|
|||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
|
||||
config.vm.box = "ubuntu/trusty64"
|
||||
|
||||
config.vm.network "forwarded_port", guest: 8888, host:8888
|
||||
|
||||
config.vm.provision "shell", path: "docs/scripts/install.sh"
|
||||
config.vm.provision "shell", path: "docs/scripts/serve.sh"
|
||||
|
||||
end
|
Loading…
Reference in New Issue