Add basic Vagrantfile.

This commit is contained in:
Christopher Gervais 2017-03-03 09:45:04 -05:00
parent 91c581e678
commit 7546030985
1 changed files with 13 additions and 0 deletions

13
Vagrantfile vendored Normal file
View File

@ -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