Finally fix history (#187)

This commit is contained in:
Xoconoch
2025-07-29 20:35:51 -06:00
parent db3eee3c63
commit 68bf60ec7e
5 changed files with 1642 additions and 2982 deletions

4
app.py
View File

@@ -23,7 +23,6 @@ from urllib.parse import urlparse
# Import Celery configuration and manager
from routes.utils.celery_manager import celery_manager
from routes.utils.celery_config import REDIS_URL
from routes.utils.history_manager import init_history_db
# Configure application-wide logging
@@ -150,9 +149,6 @@ def create_app():
# Set up CORS
CORS(app)
# Initialize databases
init_history_db()
# Register blueprints
app.register_blueprint(config_bp, url_prefix="/api")
app.register_blueprint(search_bp, url_prefix="/api")