advent22/api/.vscode/launch.json
Jörn-Michael Miehe d0a7daf7be 🚧 api: re-scaffolding
- remove legacy "poetry.lock", "main.py"
- flesh out launch.json to use only "fastapi-cli"
- remove unneeded lines from "settings.json"
- rework main "Dockerfile" for "uv" compliance
- update ".dockerignore"
2026-02-19 03:10:03 +01:00

26 lines
No EOL
832 B
JSON

{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "FastAPI CLI (dev)",
"type": "debugpy",
"request": "launch",
"module": "fastapi",
"args": [
"dev",
"--host", "0.0.0.0",
"--port", "8000",
"--entrypoint", "advent22_api.app:app",
"--reload-dir", "${workspaceFolder}/advent22_api",
],
"env": {
"WEBDAV__CACHE_TTL": "30",
},
"justMyCode": true,
},
]
}