pomerium/.vscode/launch.json

25 lines
526 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",
}
]
}