From 30ecd6060193a9373eed8c3cf45f634107a233d1 Mon Sep 17 00:00:00 2001 From: Mikhail Yevchenko Date: Wed, 1 Apr 2026 11:13:44 +0000 Subject: [PATCH] Add VS Code Python extension to devcontainer configuration --- .devcontainer/devcontainer.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4ff9532..edb9de9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,6 +7,13 @@ "containerEnv": { "OLLAMA_HOST": "ollama:11434" + }, + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python" + ] + } } }