17 lines
288 B
Python
17 lines
288 B
Python
"""
|
|
Celery configurations
|
|
"""
|
|
|
|
import os
|
|
|
|
import celery
|
|
from config.env import env
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", env("DJANGO_SETTINGS_MODULE"))
|
|
|
|
app = celery.Celery("config")
|
|
|
|
app.config_from_object("django.conf:settings", namespace="CELERY")
|
|
|
|
app.autodiscover_tasks()
|