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