gisaf-backend/.vscode/launch.json

33 lines
770 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": "Gisaf FastAPI",
2023-11-06 17:04:17 +05:30
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"src.gisaf.application:app",
2023-11-06 17:04:17 +05:30
"--port=5003",
"--reload"
],
"justMyCode": false
},
{
"name": "Gisaf scheduler FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"src.gisaf.scheduler_application:app",
"--port=5004",
"--reload"
],
2023-11-06 17:04:17 +05:30
"justMyCode": false
}
2023-11-06 17:04:17 +05:30
]
}