Skip to content

Commit

Permalink
Increase memory of Vagrant, fixes #601 hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
lord committed Jan 20, 2018
1 parent b742b60 commit 55cbe85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network :forwarded_port, guest: 4567, host: 4567
config.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
end

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

0 comments on commit 55cbe85

Please sign in to comment.