Add debug vscode settings

This commit is contained in:
Piotr Rogowski 2023-08-22 13:04:11 +02:00
parent d6bc6240d8
commit 7ec1f90264
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
2 changed files with 19 additions and 0 deletions

3
.gitignore vendored
View File

@ -36,3 +36,6 @@ main
# docker overrides
docker-compose.override.yml
# debug artifacts
__debug_bin*

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

@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}",
"args": ["serve", "--debug"],
}
]
}