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
This commit is contained in:
Vendored
+43
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build",
|
||||
"type": "shell",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
"--build",
|
||||
"build",
|
||||
"--target",
|
||||
"auth_service"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "run",
|
||||
"type": "shell",
|
||||
"command": "./build/auth_service",
|
||||
"dependsOn": "build",
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "test",
|
||||
"type": "shell",
|
||||
"command": "ctest",
|
||||
"args": [
|
||||
"--test-dir",
|
||||
"build",
|
||||
"--output-on-failure"
|
||||
],
|
||||
"dependsOn": "build"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user