admin / Apex
publicBid Management and Orchestration Tool with AI Capability
Apex / Synapse-Apexv2 / backend / app / workers / celery_app.py
296 B · main
1 2 3 4 5 6 7 8 9 10 11 | from celery import Celery from app.core.config import settings celery = Celery( "synapse_apex", broker=settings.redis_url, backend=settings.redis_url, include=["app.workers.tasks"], ) celery.conf.update(task_track_started=True, task_serializer="json", result_serializer="json") |