DocsGPT/application/celery.py

11 lines
260 B
Python
Raw Normal View History

2023-09-26 09:03:22 +00:00
from celery import Celery
from app import create_app
def make_celery(app_name=__name__):
app = create_app()
celery = Celery(app_name, broker=app.config['CELERY_BROKER_URL'])
celery.conf.update(app.config)
return celery
celery = make_celery()