Mercurial > wikked
view backend.py @ 160:3ef7b9dca1f8
What the fuck, Mercurial
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 09 Jan 2014 21:00:23 -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()