Files
schreifuchs.ch/.vscode/launch.json
2026-03-02 22:37:48 +01:00

23 lines
448 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Server",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/schreifuchs-ch/main.go",
"cwd": "${workspaceFolder}",
"showLog": true
},
{
"name": "Attach to Air",
"type": "go",
"request": "attach",
"mode": "remote",
"port": 2345,
"host": "127.0.0.1"
}
]
}