From b9a41fd294430297f1a67e2c3a8b2d4592e009a8 Mon Sep 17 00:00:00 2001 From: Jack Case Date: Sun, 19 Oct 2025 15:34:18 +0000 Subject: [PATCH] update devcontainer to activate and install requirements --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 066f2aa..278689c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,7 +10,7 @@ "ms-python.python" ] } - } + }, // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, @@ -20,6 +20,7 @@ // Use 'postCreateCommand' to run commands after the container is created. // "postCreateCommand": "pip3 install --user -r requirements.txt", + "postCreateCommand": ". ./env/bin/activate; python -m pip install -r requirements.txt" // Configure tool-specific properties. // "customizations": {},