pomerium/.vscode/launch.json
2021-04-07 12:29:36 -07:00

22 lines
501 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"]
},
{
"name": "Connect to server",
"type": "go",
"request": "attach",
"mode": "remote",
"remotePath": "/go/src/github.com/pomerium/pomerium/",
"port": 9999,
"host": "127.0.0.1"
}
]
}