Initial commit
CI / test (push) Canceled after 0s

This commit is contained in:
2026-09-12 22:22:17 +02:00
commit 904d14b64c
314 changed files with 31884 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Gardomatic: API",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/api",
"envFile": "${workspaceFolder}/.env",
"env": {
"GARDOMATIC_API_HOST": "127.0.0.1"
}
},
{
"name": "Gardomatic: Web",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/web",
"envFile": "${workspaceFolder}/.env",
"env": {
"GARDOMATIC_WEB_HOST": "0.0.0.0"
}
}
],
"compounds": [
{
"name": "Gardomatic: API + Web",
"configurations": [
"Gardomatic: API",
"Gardomatic: Web"
],
"stopAll": true
}
]
}