Update project and configurations

This commit is contained in:
Zou-Seay
2026-06-11 16:28:00 +08:00
parent 12d3922091
commit a29a91867d
237 changed files with 164880 additions and 90 deletions

44
intelligent_cabin/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,44 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"python": "${workspaceFolder}/.venv/bin/python",
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env",
"args": [
"app.main:app",
"--host",
"127.0.0.1",
"--port",
"8000",
"--reload"
],
"jinja": true,
"justMyCode": false,
"console": "integratedTerminal"
},
{
"name": "Debug FastAPI Without Reload",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"python": "${workspaceFolder}/.venv/bin/python",
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env",
"args": [
"app.main:app",
"--host",
"127.0.0.1",
"--port",
"8000"
],
"jinja": true,
"justMyCode": false,
"console": "integratedTerminal"
}
]
}