view backend.py @ 139:2ec24079d9df

Updated requirements.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 08 Dec 2013 13:12:46 -0800
parents df04e6a875ba
children 87606db8c641
line wrap: on
line source

import logging
from celery import Celery
from utils import find_wiki_root


logging.basicConfig(level=logging.DEBUG)


app = Celery(
        'wikked',
        broker='amqp://',
        backend='amqp://',
        include=['wikked.tasks'])

if __name__ == '__main__':
    app.start()