d6df8d9b8c
cerley beat worker redis setting for cerley
8 lines
289 B
Python
8 lines
289 B
Python
import os
|
|
from celery import Celery
|
|
from django.conf import settings
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings.production')
|
|
app = Celery('core')
|
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
|
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS) |