mirror of https://github.com/zulip/zulip.git
Reduce development environment RAM requirements by 750MB.
Since we merged cd2348e9ae
more than a
month ago and haven't seen any noticable regresions as a result, it's
reasonable at this point to do a corresponding decrease in our
documented RAM requirements for the Zulip development environment.
This commit is contained in:
parent
e7cb1e3f92
commit
aa7ff158b6
|
@ -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`
|
||||
|
||||
|
|
|
@ -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 = <<SCRIPT
|
||||
|
|
Loading…
Reference in New Issue