comparison test.ini @ 1231:9f6560667743

fixes for stable
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 09 Apr 2011 17:13:15 +0200
parents af6ca51fb80f
children bf263968da47
comparison
equal deleted inserted replaced
1228:73434499fa72 1231:9f6560667743
1 ################################################################################ 1 ################################################################################
2 ################################################################################ 2 ################################################################################
3 # rhodecode - Pylons environment configuration # 3 # RhodeCode - Pylons environment configuration #
4 # # 4 # #
5 # The %(here)s variable will be replaced with the parent directory of this file# 5 # The %(here)s variable will be replaced with the parent directory of this file#
6 ################################################################################ 6 ################################################################################
7 7
8 [DEFAULT] 8 [DEFAULT]
9 debug = true 9 debug = true
10 ################################################################################ 10 ################################################################################
11 ## Uncomment and replace with the address which should receive ## 11 ## Uncomment and replace with the address which should receive ##
12 ## any error reports after application crash ## 12 ## any error reports after application crash ##
13 ## Additionally those settings will be used by rhodecode mailing system ## 13 ## Additionally those settings will be used by RhodeCode mailing system ##
14 ################################################################################ 14 ################################################################################
15 #email_to = admin@localhost 15 #email_to = admin@localhost
16 #error_email_from = paste_error@localhost 16 #error_email_from = paste_error@localhost
17 #app_email_from = rhodecode-noreply@localhost 17 #app_email_from = rhodecode-noreply@localhost
18 #error_message = 18 #error_message =
40 [app:main] 40 [app:main]
41 use = egg:rhodecode 41 use = egg:rhodecode
42 full_stack = true 42 full_stack = true
43 static_files = true 43 static_files = true
44 lang=en 44 lang=en
45 cache_dir = %(here)s/data 45 cache_dir = /tmp/data
46 index_dir = /tmp/index 46 index_dir = /tmp/index
47 cut_off_limit = 256000 47 cut_off_limit = 256000
48 force_https = false 48 force_https = false
49 49
50 #################################### 50 ####################################
67 #celery.amqp.task.result.expires = 18000 67 #celery.amqp.task.result.expires = 18000
68 68
69 celeryd.concurrency = 2 69 celeryd.concurrency = 2
70 #celeryd.log.file = celeryd.log 70 #celeryd.log.file = celeryd.log
71 celeryd.log.level = debug 71 celeryd.log.level = debug
72 celeryd.max.tasks.per.child = 3 72 celeryd.max.tasks.per.child = 1
73 73
74 #tasks will never be sent to the queue, but executed locally instead. 74 #tasks will never be sent to the queue, but executed locally instead.
75 celery.always.eager = false 75 celery.always.eager = false
76 76
77 #################################### 77 ####################################
78 ### BEAKER CACHE #### 78 ### BEAKER CACHE ####
79 #################################### 79 ####################################
80 beaker.cache.data_dir=/%(here)s/data/cache/data 80 beaker.cache.data_dir=/tmp/data/cache/data
81 beaker.cache.lock_dir=/%(here)s/data/cache/lock 81 beaker.cache.lock_dir=/tmp/data/cache/lock
82 beaker.cache.regions=super_short_term,short_term,long_term,sql_cache_short,sql_cache_med,sql_cache_long 82 beaker.cache.regions=super_short_term,short_term,long_term,sql_cache_short,sql_cache_med,sql_cache_long
83 83
84 beaker.cache.super_short_term.type=memory 84 beaker.cache.super_short_term.type=memory
85 beaker.cache.super_short_term.expire=10 85 beaker.cache.super_short_term.expire=10
86 86
145 145
146 ################################ 146 ################################
147 ### LOGGING CONFIGURATION #### 147 ### LOGGING CONFIGURATION ####
148 ################################ 148 ################################
149 [loggers] 149 [loggers]
150 keys = root, routes, rhodecode, sqlalchemy 150 keys = root, routes, rhodecode, sqlalchemy,beaker,templates
151 151
152 [handlers] 152 [handlers]
153 keys = console 153 keys = console
154 154
155 [formatters] 155 [formatters]