Catalyst / admin/Apex 14.8 GB / 57.8 GB 40.0 GB free
Help Sign in

admin / Apex

public

Bid Management and Orchestration Tool with AI Capability

Code Issues Pull requests Pipelines Packages Security Insights Wiki Settings
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")