chore: track VS Code tasks.json and launch.json in git

This commit is contained in:
GitHub Actions
2025-12-14 00:16:47 +00:00
parent 7ab2ce2617
commit eb16452d8b
3 changed files with 279 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Backend (Docker)",
"type": "go",
"request": "attach",
"mode": "remote",
"substitutePath": [
{
"from": "${workspaceFolder}",
"to": "/app"
}
],
"port": 2345,
"host": "127.0.0.1",
"showLog": true,
"trace": "log",
"logOutput": "rpc"
}
]
}