Mercurial > public > sg101
diff gpp/settings/base.py @ 522:82b97697312e
Created Celery tasks to process new posts and topics. Keep the updated topic set in Redis.
This is for tickets #194, #237, #239.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 18 Dec 2011 23:46:52 +0000 |
parents | f72ace06658a |
children | a053fbd3ac98 |
line wrap: on
line diff
--- a/gpp/settings/base.py Sat Dec 17 23:43:00 2011 +0000 +++ b/gpp/settings/base.py Sun Dec 18 23:46:52 2011 +0000 @@ -199,6 +199,13 @@ ####################################################################### +# Redis integration & settings +####################################################################### +REDIS_HOST = 'localhost' +REDIS_PORT = 6379 +REDIS_DB = 0 + +####################################################################### # Celery integration & settings ####################################################################### BROKER_URL = 'redis://localhost:6379/1' @@ -237,7 +244,6 @@ ####################################################################### # GPP Specific Settings ####################################################################### -GPP_SEND_EMAIL = True GPP_NO_REPLY_EMAIL = 'no_reply' AVATAR_DIR = 'avatars' MAX_AVATAR_SIZE_BYTES = 2 * 1024 * 1024