This repository has been archived on 2020-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
statuspage/app/celery.py

8 lines
176 B
Python
Raw Normal View History

from __future__ import absolute_import
from celery import Celery
app = Celery('app',
broker='amqp://cl:cl1234@localhost/cl_vhost',
backend='rpc://',
include=['app.tasks'])