Files

21 lines
441 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Python App",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"app.main:app",
"--reload",
"--host",
"0.0.0.0",
"--port",
"8000"
],
"jinja": true
}
]
}