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