pomerium/.vscode/launch.json
Denis Mishin a49f86d023
use tlsClientConfig instead of custom dialer (#3830)
* use tlsClientConfig instead of custom dialer

* rm debug log
2022-12-27 09:55:36 -07:00

23 lines
535 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "debug pomerium",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}/cmd/pomerium",
"args": ["-config", "${workspaceRoot}/.config.yaml"],
"cwd": "${workspaceRoot}",
},
{
"name": "Connect to server",
"type": "go",
"request": "attach",
"mode": "remote",
"remotePath": "/go/src/github.com/pomerium/pomerium/",
"port": 9999,
"host": "127.0.0.1"
}
]
}