aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json20
1 files changed, 16 insertions, 4 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 3f4facb..7c3d99c 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -1,6 +1,7 @@
{
"version": "0.2.0",
- "configurations": [{
+ "configurations": [
+ {
"name": "XDS-Server",
"type": "go",
"request": "launch",
@@ -32,10 +33,21 @@
"showLog": false
},
{
- "type": "node",
+ "name": "Script SDK db-dump",
+ "type": "python",
"request": "launch",
- "name": "Script sdk list",
- "program": "${workspaceFolder}/scripts/sdks/agl/list"
+ "stopOnEntry": true,
+ "pythonPath": "${config:python.pythonPath}",
+ "program": "${workspaceFolder}/scripts/sdks/agl/db-dump",
+ "args": [
+ "-debug"
+ ],
+ "cwd": "${workspaceFolder}",
+ "env": {},
+ "envFile": "${workspaceFolder}/.env",
+ "debugOptions": [
+ "RedirectOutput"
+ ]
}
]
}