Mercurial > wikked
view backend.py @ 151:f32af0888382
Added support for ElasticSearch indexing:
- More configurable setup for wiki providers (SCM, indexing, etc.).
- Lazy importing of provider specific packages.
- Nicer search results.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 16 Dec 2013 20:59:42 -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()