mirror of
https://github.com/fergalmoran/dss.api.git
synced 2026-01-04 15:44:11 +00:00
Some celery stuff
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -33,3 +33,4 @@ dsskeys
|
||||
reload
|
||||
reset
|
||||
__krud/
|
||||
celerybeat-schedule
|
||||
|
||||
Binary file not shown.
19
dss/celeryconf.py
Normal file
19
dss/celeryconf.py
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
|
||||
import os
|
||||
import logging
|
||||
|
||||
from celery import Celery
|
||||
|
||||
logger = logging.getLogger('dss')
|
||||
|
||||
# set the default Django settings module for the 'celery' program.
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'dss.settings')
|
||||
|
||||
from django.conf import settings
|
||||
app = Celery('dss')
|
||||
|
||||
# Using a string here means the worker will not have to
|
||||
# pickle the object when using Windows.
|
||||
app.config_from_object('django.conf:settings')
|
||||
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
|
||||
Reference in New Issue
Block a user