Skip to content
This repository was archived by the owner on Aug 5, 2021. It is now read-only.

Commit 55cbe85

Browse files
committed
Increase memory of Vagrant, fixes #601 hopefully
1 parent b742b60 commit 55cbe85

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Vagrantfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Vagrant.configure(2) do |config|
22
config.vm.box = "ubuntu/trusty64"
33
config.vm.network :forwarded_port, guest: 4567, host: 4567
4+
config.vm.provider "virtualbox" do |vb|
5+
vb.memory = "2048"
6+
end
47

58
config.vm.provision "bootstrap",
69
type: "shell",
@@ -38,4 +41,4 @@ Vagrant.configure(2) do |config|
3841
cd /vagrant
3942
bundle exec middleman server --watcher-force-polling --watcher-latency=1 &> ~/middleman.log &
4043
SHELL
41-
end
44+
end

0 commit comments

Comments
 (0)