Avoid duplicate SDK install dir - SPEC-1252
[src/xds/xds-server.git] / .vscode / launch.json
index 3f4facb..7c3d99c 100644 (file)
@@ -1,6 +1,7 @@
 {
     "version": "0.2.0",
-    "configurations": [{
+    "configurations": [
+        {
             "name": "XDS-Server",
             "type": "go",
             "request": "launch",
             "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"
+            ]
         }
     ]
 }