You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DocsGPT/application/celery.py

10 lines
290 B
Python

8 months ago
from celery import Celery
8 months ago
from application.core.settings import settings
8 months ago
def make_celery(app_name=__name__):
8 months ago
celery = Celery(app_name, broker=settings.CELERY_BROKER_URL, backend=settings.CELERY_RESULT_BACKEND)
8 months ago
celery.conf.update(settings)
8 months ago
return celery
celery = make_celery()