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": [
|
|
|
|
{
|
2023-12-21 10:51:31 +05:30
|
|
|
"name": "Gisaf FastAPI",
|
2023-11-06 17:04:17 +05:30
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"module": "uvicorn",
|
|
|
|
"args": [
|
2023-12-13 01:25:00 +05:30
|
|
|
"src.gisaf.application:app",
|
2023-11-06 17:04:17 +05:30
|
|
|
"--port=5003",
|
|
|
|
"--reload"
|
|
|
|
],
|
2023-12-21 10:51:31 +05:30
|
|
|
"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-12-21 10:51:31 +05:30
|
|
|
|
2023-11-06 17:04:17 +05:30
|
|
|
]
|
|
|
|
}
|