mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-07-07 01:24:06 +00:00
22 lines
642 B
Python
22 lines
642 B
Python
![]() |
import logging
|
||
|
import os
|
||
|
|
||
|
from celery import Celery
|
||
|
from celery import shared_task
|
||
|
|
||
|
|
||
|
# Set the default Django settings module for the 'celery' program.
|
||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
|
||
|
logger = logging.getLogger(__name__)
|
||
|
app = Celery('mysite')
|
||
|
|
||
|
# Using a string here means the worker doesn't have to serialize
|
||
|
# the configuration object to child processes.
|
||
|
# - namespace='CELERY' means all celery-related configuration keys
|
||
|
# should have a `CELERY_` prefix.
|
||
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
||
|
|
||
|
# Load task modules from all registered Django apps.
|
||
|
app.autodiscover_tasks()
|
||
|
|