mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-09 19:10:53 +00:00
11 lines
260 B
Python
11 lines
260 B
Python
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()
|