Skip to content

Instantly share code, notes, and snippets.

@sikaili99
Created April 19, 2020 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sikaili99/9f0c1edfc06ae18f6b8dc12384c35d1c to your computer and use it in GitHub Desktop.
Save sikaili99/9f0c1edfc06ae18f6b8dc12384c35d1c to your computer and use it in GitHub Desktop.
from __future__ import absolute_import, unicode_literals
import os
from celery import Celery
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_twilio.settings')
app = Celery('django_twilio')
# 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 app configs.
app.autodiscover_tasks()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment