Merge pull request #20 from ergonlogic/vagrant

Add Vagrant support
This commit is contained in:
Lucas Bickel 2017-03-06 11:46:52 +01:00 committed by GitHub
commit bdcd21208d
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