Avoid duplicate SDK install dir - SPEC-1252
[src/xds/xds-server.git] / .vscode / launch.json
1 {
2     "version": "0.2.0",
3     "configurations": [
4         {
5             "name": "XDS-Server",
6             "type": "go",
7             "request": "launch",
8             "mode": "debug",
9             "remotePath": "",
10             "port": 2345,
11             "host": "127.0.0.1",
12             "program": "${workspaceRoot}",
13             "env": {
14                 "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}",
15             },
16             "args": ["-log", "debug"],
17             "showLog": false
18         },
19         {
20             "name": "XDS-Server local dev",
21             "type": "go",
22             "request": "launch",
23             "mode": "debug",
24             "remotePath": "",
25             "port": 2345,
26             "host": "127.0.0.1",
27             "program": "${workspaceRoot}",
28             "env": {
29                 "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}",
30                 "XDS_LOG_SILLY": "0"
31             },
32             "args": ["-log", "debug", "-c", "__config_local_dev.json"],
33             "showLog": false
34         },
35         {
36             "name": "Script SDK db-dump",
37             "type": "python",
38             "request": "launch",
39             "stopOnEntry": true,
40             "pythonPath": "${config:python.pythonPath}",
41             "program": "${workspaceFolder}/scripts/sdks/agl/db-dump",
42             "args": [
43                 "-debug"
44             ],
45             "cwd": "${workspaceFolder}",
46             "env": {},
47             "envFile": "${workspaceFolder}/.env",
48             "debugOptions": [
49                 "RedirectOutput"
50             ]
51         }
52     ]
53 }