vagrant setup

This commit is contained in:
Jonathan Lamothe
2020-03-03 14:23:13 -05:00
parent 0676bf4067
commit 6227df8e01
4 changed files with 31 additions and 0 deletions

10
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,10 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provision "shell", path: "vagrant/provision.sh"
config.vm.provider :virtualbox do |v|
v.customize ["modifyvm", :id, "--memory", 4096]
end
end