From 7c1197ba450375c6bd1f33ec63a857adbacaa170 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Tue, 9 Oct 2018 12:47:48 +0530 Subject: [PATCH] vagrant: Increase memory to 2GiB Closes #1397 Signed-off-by: Joseph Nuthalapati Reviewed-by: James Valleroy --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 444e86be3..0a98ad9b1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -19,6 +19,9 @@ Vagrant.configure(2) do |config| config.vm.box = "freedombox/plinth-dev" 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 cd /vagrant/ ./setup.py install