From 9dc3ea1ac94b85cbe63fcbff1a2173c62a3210ea Mon Sep 17 00:00:00 2001 From: Carrie Roberts Date: Wed, 24 Dec 2025 05:10:42 +0000 Subject: [PATCH] Update dev container configuration - Replace live-server feature with VS Code extension - Add Python and Pylance extensions - Change postCreateCommand to use requirements.txt instead of requirements-dev.txt - Remove .vscode/settings.json file --- .devcontainer/devcontainer.json | 12 +++++++++--- .vscode/settings.json | 3 --- 2 files changed, 9 insertions(+), 6 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 625a4a6..0e4291b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,13 @@ { "image": "mcr.microsoft.com/devcontainers/python:3.12-bookworm", - "features": { - "ghcr.io/devcontainers-extra/features/live-server:1": {} + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance", + "ritwickdey.liveserver" + ] + } }, - "postCreateCommand": "pip install -r requirements-dev.txt" + "postCreateCommand": "pip install -r requirements.txt" } diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 88322cc..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "python.pythonPath": "C:\\Python27\\python.exe" -} \ No newline at end of file