diff --git a/README.dev.md b/README.dev.md index 8b4fff7975..5965fdc533 100644 --- a/README.dev.md +++ b/README.dev.md @@ -2,9 +2,7 @@ Installing the Zulip Development environment ============================================ -You will need a machine with at least 2GB of RAM available (see -https://github.com/zulip/zulip/issues/32 for a plan for how to -dramatically reduce this requirement). +You will need a machine with at least 1.25GB of RAM available. Start by cloning this repository: `git clone https://github.com/zulip/zulip.git` diff --git a/Vagrantfile b/Vagrantfile index 0c68658fee..bb80815f2a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -63,8 +63,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.provider "virtualbox" do |vb, override| override.vm.box = "ubuntu/trusty64" - # 2GiB seemed reasonable here. The VM OOMs with only 1024MiB. - vb.memory = 2048 + # It's possible we can get away with just 1GB; more testing needed + vb.memory = 1280 end $provision_script = <