Mercurial > wikked
view backend.py @ 162:81e39ae8aef0
Fixed missing files from the Pypi package and the production build.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 12 Jan 2014 00:22:28 -0800 |
parents | 87606db8c641 |
children | a4a64d6b66cb |
line wrap: on
line source
import logging from celery import Celery logging.basicConfig(level=logging.DEBUG) app = Celery( 'wikked', broker='amqp://', backend='amqp://', include=['wikked.tasks']) if __name__ == '__main__': app.start()