comparison gpp/settings/base.py @ 544:c092efc9ce71

Initial version of the phantombrigade application. It has one view to query the TS3 server and output a JSON representation of the status.
author Brian Neal <bgneal@gmail.com>
date Thu, 12 Jan 2012 21:42:01 -0600
parents 51fa1e0ca218
children c4696a0cbd3f
comparison
equal deleted inserted replaced
543:fc564c209899 544:c092efc9ce71
136 'legacy', 136 'legacy',
137 'membermap', 137 'membermap',
138 'messages', 138 'messages',
139 'news', 139 'news',
140 'oembed', 140 'oembed',
141 'phantombrigade',
141 'podcast', 142 'podcast',
142 'polls', 143 'polls',
143 'potd', 144 'potd',
144 'shoutbox', 145 'shoutbox',
145 'smiley', 146 'smiley',
274 275
275 # Google OAuth settings 276 # Google OAuth settings
276 GOOGLE_OAUTH_CONSUMER_KEY = 'surfguitar101.com' 277 GOOGLE_OAUTH_CONSUMER_KEY = 'surfguitar101.com'
277 GOOGLE_OAUTH_PRIVATE_KEY_PATH = SECRETS['GOOGLE_KEY_PATH'] 278 GOOGLE_OAUTH_PRIVATE_KEY_PATH = SECRETS['GOOGLE_KEY_PATH']
278 279
280 # Phantom Brigade TeamSpeak3 settings
281 PB_TS3_IP = '206.123.95.194'
282 PB_TS3_PORT = 10011
283 PB_TS3_VID = 6113
284
279 ####################################################################### 285 #######################################################################
280 # Asynchronous settings (queues, queued_search, redis, celery, etc) 286 # Asynchronous settings (queues, queued_search, redis, celery, etc)
281 ####################################################################### 287 #######################################################################
282 QUEUE_BACKEND = 'redisd' 288 QUEUE_BACKEND = 'redisd'
283 QUEUE_REDIS_CONNECTION = 'localhost:6379' 289 QUEUE_REDIS_CONNECTION = 'localhost:6379'