From 5280a5d59de8f0be5faf0a2c5180e41723ee620c Mon Sep 17 00:00:00 2001 From: all moe Date: Thu, 25 Dec 2025 10:12:45 +0100 Subject: [PATCH] Add enhanced devcontainer with shell features and VS Code customizations - Add common-utils and git features - Include GitHub Copilot VS Code extensions - Add postCreateCommand for setup confirmation --- .devcontainer/devcontainer.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..d90fce7 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal: 2", + "features": { + "ghcr.io/devcontainers/features/common-utils: 2": {}, + "ghcr.io/devcontainers/features/git:1": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "GitHub.copilot", + "GitHub.copilot-chat" + ] + } + }, + "postCreateCommand": "echo 'Development environment ready! '" +}