-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcelery.py
28 lines (21 loc) · 809 Bytes
/
celery.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
"""
Copyright (c) 2019 - present AppSeed.us
"""
import os
from celery import Celery
if os.environ.get('DJANGO_SETTINGS_MODULE'):
app = Celery('core')
# 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()
else:
print(' ')
print('Celery Configuration ERROR: ')
print(' > "DJANGO_SETTINGS_MODULE" not set in environment (value in manage.py)')
print(' Hint: export DJANGO_SETTINGS_MODULE=project.settings ')
print(' ')