chore: add dlv for debugging in dev workflow

This commit is contained in:
Stavros
2025-07-11 17:15:32 +03:00
parent f73eb9571f
commit 10d1b48505
5 changed files with 19 additions and 5 deletions

15
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Connect to server",
"type": "go",
"request": "attach",
"mode": "remote",
"remotePath": "/tinyauth",
"port": 4000,
"host": "127.0.0.1",
"debugAdapter": "legacy"
}
]
}