Files

21 lines
441 B
JSON
Raw Permalink Normal View History

2024-07-23 15:33:23 +02:00
{
"version": "0.2.0",
"configurations": [
{
2026-04-19 20:19:58 +02:00
"name": "Launch Python App",
"type": "debugpy",
2024-07-23 15:33:23 +02:00
"request": "launch",
2026-04-19 20:19:58 +02:00
"module": "uvicorn",
2024-09-16 16:55:29 +02:00
"args": [
2026-04-19 20:19:58 +02:00
"app.main:app",
"--reload",
"--host",
"0.0.0.0",
"--port",
"8000"
],
"jinja": true
2024-07-23 15:33:23 +02:00
}
]
2026-04-19 20:19:58 +02:00
}