From 8f907850adcd770a8d7d86655bda9930b99b8223 Mon Sep 17 00:00:00 2001 From: Alex Yong Date: Tue, 7 Oct 2025 16:59:35 -0400 Subject: [PATCH 1/2] adjust postcreatecommand for stoat Signed-off-by: Alex Yong --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7b70f8bf..4997790f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,7 +10,7 @@ "jdkDistro": "oracle" } }, - "postCreateCommand": "chmod +x gradlew && deno run -A scripts/download_deps.ts --yes && cp revoltbuild.properties.example revoltbuild.properties && cp sentry.properties.example sentry.properties && cp app/google-services.json.example app/google-services.json && git submodule update --init --recursive", + "postCreateCommand": "chmod +x gradlew && deno run -A scripts/download_deps.ts --yes && cp stoatbuild.properties.example stoatbuild.properties && cp sentry.properties.example sentry.properties && cp app/google-services.json.example app/google-services.json && git submodule update --init --recursive", "customizations": { "vscode": { "extensions": [ From 9062aafa84c51ade4fe6e21d79a0a09f736d0606 Mon Sep 17 00:00:00 2001 From: Alex Yong Date: Mon, 13 Oct 2025 16:10:03 +0000 Subject: [PATCH 2/2] Adding min requirements for codespace instance. Signed-off-by: Alex Yong --- .devcontainer/devcontainer.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4997790f..9ddce0d0 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -19,5 +19,14 @@ "kotlin.kotlin" ] } + }, + "runArgs": [ + "--memory=32gb", + "--cpus=8" + ], + "hostRequirements": { + "cpus": 8, + "memory": "32gb", + "storage": "64gb" } }