From 1ba1430bd08c6292c903e691d56ffa3dd1b2395f Mon Sep 17 00:00:00 2001 From: David Trattnig <david@subsquare.at> Date: Mon, 1 Aug 2022 11:20:11 +0200 Subject: [PATCH] chore(launch): run as module --- .vscode/launch.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 1f0e9f28..fa7354ec 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,10 @@ "name": "Start Engine", "type": "python", "request": "launch", - "program": "${workspaceFolder}/src/aura_engine/app.py", + "env": { + "PYTHONPATH": "${workspaceRoot}/src" + }, + "module": "aura_engine.app", "console": "integratedTerminal" }, { -- GitLab