summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json9
1 files changed, 6 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 07508f6f..39142df5 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,10 +5,13 @@
"name": "Debug",
"type": "python",
"request": "launch",
- "program": "${workspaceFolder}/plugin_loader/main.py",
- "preLaunchTask": "Stop Service",
+ "program": "${workspaceFolder}/backend/main.py",
+ "cwd": "${workspaceFolder}/backend",
"console": "integratedTerminal",
- "justMyCode": true
+ "env": {
+ "PLUGIN_PATH": "/home/deck/homebrew/plugins"
+ },
+ "preLaunchTask": "Build frontend"
}
]
}