From 89c49c72006b35bf4d5a1fbcb4bf924b90aa9ff5 Mon Sep 17 00:00:00 2001 From: Michael Vorburger Date: Tue, 3 Mar 2026 10:59:18 +0000 Subject: [PATCH] dev: Increase DevContainer 2 to 4 CPUs, and rm extension GitHub default 2 CPU machines for Codespace are unbearably slow to work on with Maven Java projects, so bump to 4 CPUs requirement. Also remove the "rangav.vscode-thunder-client" VSC extension (https://www.thunderclient.com) which was originally automatically added, but is not required. --- .devcontainer/devcontainer.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e1ff3efcc..cbde1a76f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,8 +9,7 @@ "vscode": { "extensions": [ "extension-pack-for-java", - "redhat.vscode-xml", - "rangav.vscode-thunder-client" + "redhat.vscode-xml" ], "settings": { "java.jdt.download.server": "latest", @@ -24,5 +23,8 @@ }, "remoteUser": "vscode", "forwardPorts": [8000, 8080, 8081, 8082], - "postCreateCommand": "git config --global credential.helper '!gh auth git-credential' && git config --global lfs.locksverify false" + "postCreateCommand": "git config --global credential.helper '!gh auth git-credential' && git config --global lfs.locksverify false", + "hostRequirements": { + "cpus": 4 + } }