Change Vagrantfile to default VM 1024MB of RAM

Revert a commit that changed the default Vagrantfile to 2048MB of RAM
https://meta.discourse.org/t/discourse-as-your-first-rails-app/5751/105
This commit is contained in:
Wladimir Braguini Domingues 2015-05-11 01:07:19 -03:00
parent 2282869f30
commit 5e7585958a
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -17,7 +17,7 @@ Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |v|
# This setting gives the VM 1024MB of RAM instead of the default 384.
v.customize ["modifyvm", :id, "--memory", [ENV['DISCOURSE_VM_MEM'].to_i, 2048].max]
v.customize ["modifyvm", :id, "--memory", [ENV['DISCOURSE_VM_MEM'].to_i, 1024].max]
# Who has a single core cpu these days anyways?
cpu_count = 2