|
a/pyforge/celeryconfig.py |
|
b/pyforge/celeryconfig.py |
1 |
# -*- coding: utf-8 -*-
|
1 |
# -*- coding: utf-8 -*-
|
2 |
CELERY_BACKEND = "mongodb"
|
2 |
CELERY_BACKEND = "mongodb"
|
|
|
3 |
CARROT_BACKEND = "amqp"
|
3 |
|
4 |
|
4 |
# We shouldn't need to supply these because we're using Mongo,
|
5 |
# We shouldn't need to supply these because we're using Mongo,
|
5 |
# but Celery gives us errors if we don't.
|
6 |
# but Celery gives us errors if we don't.
|
6 |
DATABASE_ENGINE = "sqlite3"
|
7 |
DATABASE_ENGINE = "sqlite3"
|
7 |
DATABASE_NAME = "celery.db"
|
8 |
DATABASE_NAME = "celery.db"
|