Add the Goals host

This commit is contained in:
Alexander Hosking 2019-02-08 22:09:43 -05:00
parent 09e3c78903
commit cc6e3c8587

21
ahoskingit/goals/Vagrantfile vendored Normal file
View File

@ -0,0 +1,21 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "geerlingguy/ubuntu1604"
config.vm.hostname = "goals"
playbook = 'django_goals'
client = 'ahoskingit'
iplookup = 'goals'
config.vm.provider :virtualbox do |vb|
vb.customize ['modifyvm', :id, '--memory', '1024']
end
eval(IO.read("../../vagrant.mixin.rb"), binding)
end