vagrant: Increase memory to 2GiB

Closes #1397

Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Joseph Nuthalapati 2018-10-09 12:47:48 +05:30 committed by James Valleroy
parent 9b8251e16c
commit 7c1197ba45
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

3
Vagrantfile vendored
View File

@ -19,6 +19,9 @@
Vagrant.configure(2) do |config| Vagrant.configure(2) do |config|
config.vm.box = "freedombox/plinth-dev" config.vm.box = "freedombox/plinth-dev"
config.vm.network "forwarded_port", guest: 443, host: 4430 config.vm.network "forwarded_port", guest: 443, host: 4430
config.vm.provider "virtualbox" do |vb|
vb.memory = 2048
end
config.vm.provision "shell", inline: <<-SHELL config.vm.provision "shell", inline: <<-SHELL
cd /vagrant/ cd /vagrant/
./setup.py install ./setup.py install