Created
July 14, 2020 15:34
-
-
Save LouisdeBruijn/d7eec4cc74689f33bbdfe4d7032e3783 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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