From ec29e9449c11e7d184992f6b50aecae2dc95eb03 Mon Sep 17 00:00:00 2001 From: Robbin Schepers Date: Tue, 9 Apr 2024 03:44:39 +0200 Subject: [PATCH] chore: Update vagantfile for testing on windows --- Vagrantfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 831b58c..6c47678 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,7 +5,7 @@ Vagrant.configure("2") do |config| v.gui = true v.memory = 8192 v.cpus = 4 - v.customize ["modifyvm", :id, "--vram", "256", "--monitorcount", "3"] + v.customize ["modifyvm", :id, "--vram", "256", "--monitorcount", "1"] v.customize ["storageattach", :id, "--storagectl", "IDE Controller", "--port", "0", "--device", "1", @@ -14,6 +14,7 @@ Vagrant.configure("2") do |config| end config.vm.provision "shell", privileged: "true", powershell_elevated_interactive: "true", inline: <<-SHELL - choco install -y git intellijidea-ultimate + choco install -y git intellijidea-ultimate php + choco install -y correttojdk --version=20.0.0 SHELL end