block-accounting/.vscode/launch.json
2024-05-18 15:01:12 +03:00

30 lines
1.2 KiB
JSON

{
// 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": "auto",
"program": "${workspaceRoot}/backend/cmd/main.go",
"args": [
"-log-level=debug",
"-log-local=false",
"-log-add-source=true",
"-jwt-secret=local_jwt_secret",
"-rest-address=localhost:8081",
"-db-host=localhost:8432",
"-db-database=blockd",
"-db-user=blockd",
"-db-secret=blockd",
"-db-enable-tls=false",
"-cache-host=localhost:6379"
]
}
]
}