mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2026-02-25 02:20:17 +00:00
- 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"
26 lines
No EOL
832 B
JSON
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,
|
|
},
|
|
|
|
]
|
|
} |