f976fb68b38fdbfd0b549e603c84dc9c14f88335
[src/xds/xds-server.git] / .vscode / launch.json
1 {
2     "version": "0.2.0",
3     "configurations": [{
4             "name": "XDS-Server",
5             "type": "go",
6             "request": "launch",
7             "mode": "debug",
8             "remotePath": "",
9             "port": 2345,
10             "host": "127.0.0.1",
11             "program": "${workspaceRoot}",
12             "env": {
13                 "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}",
14                 "ROOT_DIR": "${workspaceRoot}/../../../.."
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                 "ROOT_DIR": "${workspaceRoot}/../../../..",
31                 "XDS_LOG_SILLY": "0"
32             },
33             "args": ["-log", "debug", "-c", "__config_local_dev.json"],
34             "showLog": false
35         },
36         {
37             "type": "node",
38             "request": "launch",
39             "name": "Script sdk list",
40             "program": "${workspaceFolder}/scripts/sdks/agl/list"
41         }
42     ]
43 }