gisaf-backend/.vscode/launch.json

21 lines
514 B
JSON
Raw Normal View History

2023-11-06 17:04:17 +05:30
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"src.application:app",
"--port=5003",
"--reload"
],
"jinja": true,
"justMyCode": false
}
]
}