From 754603098540210a5e16c8fc296acff0b89f1725 Mon Sep 17 00:00:00 2001 From: Christopher Gervais Date: Fri, 3 Mar 2017 09:45:04 -0500 Subject: [PATCH] Add basic Vagrantfile. --- Vagrantfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 000000000..628fe3c35 --- /dev/null +++ b/Vagrantfile @@ -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