10 lines
217 B
Python
10 lines
217 B
Python
|
|
import os
|
||
|
|
|
||
|
|
from celery import Celery
|
||
|
|
|
||
|
|
|
||
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings')
|
||
|
|
|
||
|
|
app = Celery('core')
|
||
|
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
||
|
|
app.autodiscover_tasks()
|