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": [
|
2026-02-18 02:19:22 +00:00
|
|
|
// {
|
|
|
|
|
// "name": "Main Module",
|
|
|
|
|
// "type": "debugpy",
|
|
|
|
|
// "request": "launch",
|
|
|
|
|
// "module": "advent22_api.main",
|
|
|
|
|
// "pythonArgs": [
|
|
|
|
|
// "-Xfrozen_modules=off",
|
|
|
|
|
// ],
|
|
|
|
|
// "env": {
|
|
|
|
|
// "PYDEVD_DISABLE_FILE_VALIDATION": "1",
|
|
|
|
|
// "WEBDAV__CACHE_TTL": "30",
|
|
|
|
|
// },
|
|
|
|
|
// "justMyCode": true,
|
|
|
|
|
// },
|
2022-10-08 23:36:16 +00:00
|
|
|
{
|
2026-02-18 02:19:22 +00:00
|
|
|
"name": "FastAPI CLI (dev)",
|
|
|
|
|
"type": "debugpy",
|
2022-10-08 23:36:16 +00:00
|
|
|
"request": "launch",
|
2026-02-18 02:19:22 +00:00
|
|
|
"module": "fastapi",
|
|
|
|
|
"args": [
|
|
|
|
|
"dev",
|
|
|
|
|
"--entrypoint",
|
|
|
|
|
"advent22_api.app:app",
|
|
|
|
|
"--reload-dir",
|
|
|
|
|
"${workspaceFolder}/advent22_api",
|
2023-09-03 16:02:00 +00:00
|
|
|
],
|
2023-09-03 20:41:20 +00:00
|
|
|
"env": {
|
2023-09-10 02:59:57 +00:00
|
|
|
"WEBDAV__CACHE_TTL": "30",
|
2023-09-03 20:41:20 +00:00
|
|
|
},
|
|
|
|
|
"justMyCode": true,
|
2026-02-18 02:19:22 +00:00
|
|
|
},
|
|
|
|
|
|
2022-10-08 23:36:16 +00:00
|
|
|
]
|
|
|
|
|
}
|