comparison 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
comparison
equal deleted inserted replaced
521:dd14ab08a9c4 522:82b97697312e
197 HAYSTACK_SEARCH_ENGINE = 'xapian' 197 HAYSTACK_SEARCH_ENGINE = 'xapian'
198 HAYSTACK_XAPIAN_PATH = os.path.join(PROJECT_PATH, 'xapian_index') 198 HAYSTACK_XAPIAN_PATH = os.path.join(PROJECT_PATH, 'xapian_index')
199 199
200 200
201 ####################################################################### 201 #######################################################################
202 # Redis integration & settings
203 #######################################################################
204 REDIS_HOST = 'localhost'
205 REDIS_PORT = 6379
206 REDIS_DB = 0
207
208 #######################################################################
202 # Celery integration & settings 209 # Celery integration & settings
203 ####################################################################### 210 #######################################################################
204 BROKER_URL = 'redis://localhost:6379/1' 211 BROKER_URL = 'redis://localhost:6379/1'
205 BROKER_POOL_LIMIT = 10 212 BROKER_POOL_LIMIT = 10
206 213
235 } 242 }
236 243
237 ####################################################################### 244 #######################################################################
238 # GPP Specific Settings 245 # GPP Specific Settings
239 ####################################################################### 246 #######################################################################
240 GPP_SEND_EMAIL = True
241 GPP_NO_REPLY_EMAIL = 'no_reply' 247 GPP_NO_REPLY_EMAIL = 'no_reply'
242 AVATAR_DIR = 'avatars' 248 AVATAR_DIR = 'avatars'
243 MAX_AVATAR_SIZE_BYTES = 2 * 1024 * 1024 249 MAX_AVATAR_SIZE_BYTES = 2 * 1024 * 1024
244 MAX_AVATAR_SIZE_PIXELS = 100 250 MAX_AVATAR_SIZE_PIXELS = 100
245 AVATAR_DEFAULT_URL = MEDIA_URL + AVATAR_DIR + '/default.png' 251 AVATAR_DEFAULT_URL = MEDIA_URL + AVATAR_DIR + '/default.png'