diff --git a/morph/grid/local/Vagrantfile b/morph/grid/local/Vagrantfile index a2890b8a63304d37002076b5804f2b322207160e..a871cbbe72e410de88a19596ff528391e32ff811 100644 --- a/morph/grid/local/Vagrantfile +++ b/morph/grid/local/Vagrantfile @@ -13,6 +13,16 @@ Vagrant.configure("2") do |config| config.vm.box = "esselius/nixos" config.vm.box_version = "20.09" config.vm.box_check_update = false + + # To use the self-updating deployment system you need more memory. Giving + # all of the VMs enough memory for this is rather taxing, though, and the + # self-updating deployment system is not particularly useful for local + # dev. But should you want to: + # + # config.vm.provider "virtualbox" do |v| + # v.memory = 4096 + # end + config.vm.network "private_network", ip: "192.168.67.21" # Add self signed SSL key for zkap-issuer: config.vm.provision "file", source: "private-keys/payments-localdev-ssl", destination: "/tmp/payments-localdev-ssl"