Vagrantfile: Update default RAM in development.

This commit is contained in:
Tim Abbott 2016-07-20 18:39:54 -07:00
parent 568a2facce
commit 21c30b9fed
1 changed files with 2 additions and 2 deletions

4
Vagrantfile vendored
View File

@ -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 = <<SCRIPT