Files
auth-service/.vscode/launch.json
T
AntJn 062b64bce8 AUTH SERVER
- set CMAke project

- add Drogon submodule

- add json and Catch2 submodule

- add health check endpoint

-RAII SqliteDb

- Verify DB and HTTP some work
2026-04-04 20:41:24 +03:00

17 lines
455 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run auth_service",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/auth_service",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"preLaunchTask": "build"
}
]
}