queue management refactor, embrace celery and redis

This commit is contained in:
architect.in.git
2025-03-17 21:38:10 -06:00
parent d7691dd0b0
commit 9b57c5631d
31 changed files with 2092 additions and 2300 deletions

8
app.py
View File

@@ -12,6 +12,14 @@ import logging
import time
from pathlib import Path
import os
import argparse
# Import Celery configuration
try:
from routes.utils.celery_tasks import celery_app
has_celery = True
except ImportError:
has_celery = False
def create_app():
app = Flask(__name__)