Levi Blackstone 0833226b93 Add Vagrant support for easy local testing
* Add simple Vagrantfile to provision an Ubuntu 14.04 VM with the bootstrap.sh script
* Update README with instructions for use

Change-Id: I94cd69742aeffab4c01a27510c25f381151bfefe
2015-02-17 15:24:43 -06:00

8 lines
167 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision "shell", path: "bootstrap.sh"
end