gisaf-backend/.vscode/launch.json

32 lines
771 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",
2024-02-27 05:06:22 +05:30
"type": "debugpy",
2023-11-06 17:04:17 +05:30
"request": "launch",
"module": "uvicorn",
"args": [
"src.gisaf.application:app",
2024-02-27 05:06:22 +05:30
"--port=5000",
2023-11-06 17:04:17 +05:30
"--reload"
],
"justMyCode": false
},
{
"name": "Gisaf scheduler FastAPI",
2024-02-27 05:06:22 +05:30
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"src.gisaf.scheduler_application:app",
"--port=5004",
"--reload"
],
2023-11-06 17:04:17 +05:30
"justMyCode": false
}
]
}