Reorganize to fastapi template

This commit is contained in:
2026-01-10 13:22:02 +00:00
parent 7818a3fb44
commit 9f7db47528
41 changed files with 711 additions and 2415 deletions

37
.vscode/launch.json vendored
View File

@@ -5,31 +5,22 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"name": "Python Debugger: FastAPI",
"type": "debugpy",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}"
},
{
"name": "Launch Poo Reverse",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/src/helper/poo_recorder_helper/main.go",
"module": "uvicorn",
"args": [
"reverse"
]
},
{
"name": "Launch Home Automation",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/src/main.go",
"args": [
"serve"
]
"app:app",
"--host=0.0.0.0",
"--reload",
"--port=18881"
],
"jinja": true,
"autoStartBrowser": false,
"env": {
"CONFIG_FILE": "devsettings.yaml"
},
"console": "integratedTerminal"
}
]
}