Switch to side-by-side view

--- a/pyforge/celeryconfig.py
+++ b/pyforge/celeryconfig.py
@@ -1,5 +1,10 @@
 # -*- coding: utf-8 -*-
 CELERY_BACKEND = "mongodb"
+
+# We shouldn't need to supply these because we're using Mongo,
+# but Celery gives us errors if we don't.
+DATABASE_ENGINE = "sqlite3"
+DATABASE_NAME = "celery.db"
 
 AMQP_SERVER = "localhost"
 AMQP_PORT = 5672