ficsit-cli-flake/.vscode/launch.json
2023-06-15 10:50:10 +02:00

18 lines
426 B
JSON

{
// needs to attach to running dlv process execute
// dlv debug --headless --listen=:2345 .
// in the root of the package first
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Process",
"type": "go",
"debugAdapter": "dlv-dap",
"request": "attach",
"mode": "remote",
"remotePath": "${workspaceFolder}",
"host": "127.0.0.1",
"port": 2345
}
]
}