terraform/docs/debugging-configs/vscode/launch-via-cli/launch.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
358 B
JSON
Raw Permalink Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Connect to dlv server",
"type": "go",
"debugAdapter": "dlv-dap",
"request": "attach",
"mode": "remote",
"remotePath": "${workspaceFolder}",
"port": 2345,
"host": "127.0.0.1",
}
]
}