Add live (redis and websockets)

Add modernised ipynb_tools
Add scheduler
Fix crs in settings
Lots of small fixes
This commit is contained in:
phil 2023-12-21 10:51:31 +05:30
parent 461c31fb6f
commit 47df53f4d1
15 changed files with 1614 additions and 61 deletions

16
.vscode/launch.json vendored
View file

@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI",
"name": "Gisaf FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
@ -14,8 +14,20 @@
"--port=5003",
"--reload"
],
"jinja": true,
"justMyCode": false
},
{
"name": "Gisaf scheduler FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"src.gisaf.scheduler_application:app",
"--port=5004",
"--reload"
],
"justMyCode": false
}
]
}