diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-08-26 11:29:56 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-08-26 11:29:56 +0200 |
commit | 5e120c466686880c5bf6b94043dd01edc261fef9 (patch) | |
tree | 9d3071f226bd0b234540bd20bdab0c77d3bca164 /.vscode/launch.json | |
parent | e113bbc75f88457d29f11823af0ff902e7c2ac8b (diff) | |
parent | 0367a6f9f2f868d785f197a052840ec621a681a6 (diff) |
Merge remote-tracking branch 'origin/wip'
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 8bdde69..5583251 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,7 @@ { "version": "0.2.0", "configurations": [{ - "name": "XDS-Server local", + "name": "XDS-Server", "type": "go", "request": "launch", "mode": "debug", @@ -17,21 +17,20 @@ "showLog": false }, { - "name": "XDS-Server IN DOCKER", + "name": "XDS-Server local dev", "type": "go", "request": "launch", "mode": "debug", - "port": 22000, - "host": "172.17.0.2", - "remotePath": "/xds/src/github.com/iotbzh/xds-server/bin/xds-server", + "remotePath": "", + "port": 2345, + "host": "127.0.0.1", "program": "${workspaceRoot}", "env": { "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}", "ROOT_DIR": "${workspaceRoot}/../../../.." }, - "args": [], - "showLog": true + "args": ["-log", "debug", "-c", "__config_local_dev.json"], + "showLog": false } - ] -}
\ No newline at end of file +} |