advent22/api/.vscode/launch.json

30 lines
748 B
JSON
Raw Permalink Normal View History

2022-10-08 23:36:16 +00:00
{
// 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": {
2026-02-22 11:06:16 +00:00
"ADVENT22__WEBDAV__CACHE_TTL": "30"
},
"justMyCode": true
}
]
}