Skip to content

Instantly share code, notes, and snippets.

@LouisdeBruijn
Created July 14, 2020 15:34
Show Gist options
  • Select an option

  • Save LouisdeBruijn/d7eec4cc74689f33bbdfe4d7032e3783 to your computer and use it in GitHub Desktop.

Select an option

Save LouisdeBruijn/d7eec4cc74689f33bbdfe4d7032e3783 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', 'projectname.settings')
app = Celery('projectname')
# 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()
@app.task(bind=True)
def debug_task(self):
print('Request: {0!r}'.format(self.request))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment