Switch to unified view

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
4
# We shouldn't need to supply these because we're using Mongo,
5
# but Celery gives us errors if we don't.
6
DATABASE_ENGINE = "sqlite3"
7
DATABASE_NAME = "celery.db"
3
8
4
AMQP_SERVER = "localhost"
9
AMQP_SERVER = "localhost"
5
AMQP_PORT = 5672
10
AMQP_PORT = 5672
6
AMQP_VHOST = "celeryvhost"
11
AMQP_VHOST = "celeryvhost"
7
AMQP_USER = "celeryuser"
12
AMQP_USER = "celeryuser"