File: celery.py

package info (click to toggle)
python-django-health-check 3.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 428 kB
  • sloc: python: 1,886; makefile: 6
file content (4 lines) | stat: -rw-r--r-- 138 bytes parent folder | download | duplicates (3)
1
2
3
4
from celery import Celery

app = Celery("testapp", broker="memory://")
app.config_from_object("django.conf:settings", namespace="CELERY")