konfa-server/.vscode/launch.json
royalcat 77fa53dd1a
All checks were successful
docker / build-docker (push) Successful in 3m0s
config
2024-12-23 19:09:20 +03:00

18 lines
No EOL
592 B
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": "Launch file",
"type": "go",
"request": "launch",
"mode": "debug",
"env": {
"DB": "postgres://localhost:5432/konfa?sslmode=disable&user=konfa&password=konfa"
},
"program": "${workspaceFolder}/cmd/main.go",
}
]
}