From bace0200abbd4fe720cb098ba06440abac34e261 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sun, 17 Aug 2025 12:51:32 +0100 Subject: [PATCH] Add devcontainer configuration --- .devcontainer/devcontainer.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..49f9f89 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,20 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/python +{ + "name": "Development", + "image": "mcr.microsoft.com/devcontainers/python:1-3.13-bookworm", + "features": { + "ghcr.io/eitsupi/devcontainer-features/go-task:1": {}, + "ghcr.io/jsburckhardt/devcontainer-features/uv:1": {} + }, + "forwardPorts": [ + 5000 + ], + "portsAttributes": { + "5000": { + "label": "Application", + "protocol": "http", + "public": true + } + } +} \ No newline at end of file