Skip to content

Commit

Permalink
vscode: Add launch configuration for dlv debugger (#35627)
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko authored Aug 23, 2024
1 parent 40dc5c0 commit b9a54a8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"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",
}
]
}

0 comments on commit b9a54a8

Please sign in to comment.