diff options
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 39142df5..ff1f142a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,16 +2,16 @@ "version": "0.2.0", "configurations": [ { - "name": "Debug", + "name": "Debug (Local)", "type": "python", "request": "launch", "program": "${workspaceFolder}/backend/main.py", "cwd": "${workspaceFolder}/backend", "console": "integratedTerminal", "env": { - "PLUGIN_PATH": "/home/deck/homebrew/plugins" + "PLUGIN_PATH": "${workspaceFolder}/plugins" }, - "preLaunchTask": "Build frontend" + "preLaunchTask": "localrun" } ] } |
