From 21c30b9fed7f1f60e259eee073d774d06266e491 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 20 Jul 2016 18:39:54 -0700 Subject: [PATCH] Vagrantfile: Update default RAM in development. --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 73ddf23c5a..1169df2807 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -65,8 +65,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.provider "virtualbox" do |vb, override| override.vm.box = "ubuntu/trusty64" - # It's possible we can get away with just 1GB; more testing needed - vb.memory = 1280 + # It's possible we can get away with just 1.5GB; more testing needed + vb.memory = 2048 end $provision_script = <