summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json11
1 files changed, 10 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index ff1f142a..be8f2983 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -2,7 +2,16 @@
"version": "0.2.0",
"configurations": [
{
- "name": "Debug (Local)",
+ "name": "Run (Remote)",
+ "type": "python",
+ "request": "launch",
+ "console": "integratedTerminal",
+ "preLaunchTask": "remoterun",
+ "cwd": "",
+ "program": "",
+ },
+ {
+ "name": "Run (Local)",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/backend/main.py",