d4a4e1e6101c7158de1d20ce267b341f35a76dca
[src/xds/xds-agent.git] / .vscode / launch.json
1 {
2     "version": "0.2.0",
3     "configurations": [{
4             "name": "XDS-Agent",
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                 "WORKSPACE_ROOT": "${workspaceRoot}",
15                 "DEBUG_MODE": "1",
16                 "ROOT_DIR": "${workspaceRoot}/../../../.."
17             },
18             "args": ["-log", "debug", "-c", "__agent-config_local_dev.json"],
19             "showLog": false
20         }
21     ]
22 }