From 3935b899417cb801d8fa5c4841ced57628c0c092 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 15 Oct 2025 23:45:21 +0200 Subject: [PATCH] feat: Improve Github Codespaces configuration (#345) --- .devcontainer.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.devcontainer.json b/.devcontainer.json index 16e2a0e..da7299f 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -1,6 +1,21 @@ { - "name": "macos", + "name": "macOS 14", "service": "macos", - "forwardPorts": [8006], + "containerEnv": { + "VERSION": "14" + }, + "forwardPorts": [8006], + "portsAttributes": { + "8006": { + "label": "Web", + "onAutoForward": "openBrowser" + } + }, + "otherPortsAttributes": { + "onAutoForward": "silent" + }, + "hostRequirements": { + "storage": "64gb" + }, "dockerComposeFile": ".github/codespaces.yml" }