gisaf-backend/.vscode/launch.json
phil 47df53f4d1 Add live (redis and websockets)
Add modernised ipynb_tools
Add scheduler
Fix crs in settings
Lots of small fixes
2023-12-21 10:51:31 +05:30

33 lines
No EOL
770 B
JSON

{
// 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",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"src.gisaf.application:app",
"--port=5003",
"--reload"
],
"justMyCode": false
},
{
"name": "Gisaf scheduler FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"src.gisaf.scheduler_application:app",
"--port=5004",
"--reload"
],
"justMyCode": false
}
]
}