realms-wiki/Vagrantfile
Matthew Scragg 863de00a14 Fix #33 bug, thinking all users are anon
Fix bug in vagrantfile
Fix bug in db create/drop
Fix typo in cli
2014-11-11 11:35:09 -06:00

18 lines
381 B
Ruby

VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider :virtualbox do |vb|
vb.name = "realms-wiki"
vb.memory = 512
vb.cpus = 2
end
config.vm.provision "shell", path: "install.sh", privileged: false
end
Vagrant::Config.run do |config|
config.vm.forward_port 5000, 5000
end