From 08e0c59ad78186a78d244b862dae086520e9156b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Thu, 17 Aug 2023 17:07:47 +0200 Subject: [PATCH] defines environment variables in vscode launch settings --- .vscode/launch.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9b5ff00..b0d1f97 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,14 +9,20 @@ "type": "python", "request": "launch", "module": "foo", - "justMyCode": true + "justMyCode": true, + "env": { + "ENVIRONMENT": "development" + } }, { "name": "bar", "type": "python", "request": "launch", "module": "bar", - "justMyCode": true + "justMyCode": true, + "env": { + "ENVIRONMENT": "development" + } }, { "type": "firefox",