From ead8bef69d9d80d2570aa5d07c370121daf4d0db Mon Sep 17 00:00:00 2001 From: Lasse Benninga Date: Sun, 3 May 2026 19:44:44 +0200 Subject: [PATCH] Add Codespaces devcontainer (Python 3.11 + Pylance) --- .devcontainer/devcontainer.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..8214c9c --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + "name": "HYF Week 1 Assignment", + "image": "mcr.microsoft.com/devcontainers/python:3.11", + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance" + ] + } + }, + "postCreateCommand": "echo '✅ HYF Week 1 Assignment Codespace ready. Run the auto-grader locally with: bash .hyf/test.sh && cat .hyf/score.json'" +}