refactors to use redis & celery

This commit is contained in:
2025-02-20 19:56:37 +01:00
parent f68ada7204
commit 5994d8ae7b
10 changed files with 427 additions and 154 deletions

5
run.py
View File

@@ -1,5 +1,6 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app = create_app()
app.run(debug=True, threaded=True)
app.run(debug=True)