initial commit of a base Vagrantfile

This commit is contained in:
mike@arpaia.co 2014-09-08 00:54:18 -07:00
parent 11f75580f8
commit 81b653980b

7
Vagrantfile vendored Executable file
View File

@ -0,0 +1,7 @@
Vagrant.configure("2") do |config|
config.vm.define "ubuntu" do |box|
box.vm.box = "hashicorp/precise64"
end
end