Changeset - 17e3926c3753
[Not reviewed]
default
0 5 0
Marcin Kuzminski - 12 years ago 2013-06-29 23:00:10
marcin@python-works.com
added ini files into codecleaner
4 files changed with 13 insertions and 13 deletions:
0 comments (0 inline, 0 general)
development.ini
Show inline comments
 
@@ -82,58 +82,58 @@ max_request_body_size = 107374182400
 

	
 
## log 5XX errors
 
#log-5xx = true
 

	
 
## Set the socket listen queue size.
 
#listen = 256
 

	
 
## Gracefully Reload workers after the specified amount of managed requests
 
## (avoid memory leaks).
 
#max-requests = 1000
 

	
 
## Log requests slower than the specified number of milliseconds.
 
#log-slow = 10
 

	
 
## Exit if no app can be loaded.
 
#need-app = true
 

	
 
## Set lazy mode (load apps in workers instead of master).
 
#lazy = true
 

	
 
## scaling ##
 
## set cheaper algorithm to use, if not set default will be used
 
#cheaper-algo = spare
 

	
 
# minimum number of workers to keep at all times
 
## minimum number of workers to keep at all times
 
#cheaper = 1
 

	
 
# number of workers to spawn at startup
 
## number of workers to spawn at startup
 
#cheaper-initial = 1
 

	
 
# maximum number of workers that can be spawned
 
## maximum number of workers that can be spawned
 
#workers = 4
 

	
 
# how many workers should be spawned at a time
 
## how many workers should be spawned at a time
 
#cheaper-step = 1
 

	
 
## COMMON ##
 
host = 0.0.0.0
 
port = 5000
 

	
 
## prefix middleware for rc
 
#[filter:proxy-prefix]
 
#use = egg:PasteDeploy#prefix
 
#prefix = /<your-prefix>
 

	
 
[app:main]
 
use = egg:rhodecode
 
## enable proxy prefix middleware
 
#filter-with = proxy-prefix
 

	
 
full_stack = true
 
static_files = true
 
## Optional Languages
 
## en, fr, ja, pt_BR, zh_CN, zh_TW, pl
 
lang = en
 
cache_dir = %(here)s/data
 
index_dir = %(here)s/data/index
 

	
production.ini
Show inline comments
 
@@ -82,58 +82,58 @@ max_request_body_size = 107374182400
 

	
 
## log 5XX errors
 
#log-5xx = true
 

	
 
## Set the socket listen queue size.
 
#listen = 256
 

	
 
## Gracefully Reload workers after the specified amount of managed requests
 
## (avoid memory leaks).
 
#max-requests = 1000
 

	
 
## Log requests slower than the specified number of milliseconds.
 
#log-slow = 10
 

	
 
## Exit if no app can be loaded.
 
#need-app = true
 

	
 
## Set lazy mode (load apps in workers instead of master).
 
#lazy = true
 

	
 
## scaling ##
 
## set cheaper algorithm to use, if not set default will be used
 
#cheaper-algo = spare
 

	
 
# minimum number of workers to keep at all times
 
## minimum number of workers to keep at all times
 
#cheaper = 1
 

	
 
# number of workers to spawn at startup
 
## number of workers to spawn at startup
 
#cheaper-initial = 1
 

	
 
# maximum number of workers that can be spawned
 
## maximum number of workers that can be spawned
 
#workers = 4
 

	
 
# how many workers should be spawned at a time
 
## how many workers should be spawned at a time
 
#cheaper-step = 1
 

	
 
## COMMON ##
 
host = 127.0.0.1
 
port = 5000
 

	
 
## prefix middleware for rc
 
#[filter:proxy-prefix]
 
#use = egg:PasteDeploy#prefix
 
#prefix = /<your-prefix>
 

	
 
[app:main]
 
use = egg:rhodecode
 
## enable proxy prefix middleware
 
#filter-with = proxy-prefix
 

	
 
full_stack = true
 
static_files = true
 
## Optional Languages
 
## en, fr, ja, pt_BR, zh_CN, zh_TW, pl
 
lang = en
 
cache_dir = %(here)s/data
 
index_dir = %(here)s/data/index
 

	
rhodecode/config/deployment.ini_tmpl
Show inline comments
 
@@ -82,58 +82,58 @@ max_request_body_size = 107374182400
 

	
 
## log 5XX errors
 
#log-5xx = true
 

	
 
## Set the socket listen queue size.
 
#listen = 256
 

	
 
## Gracefully Reload workers after the specified amount of managed requests
 
## (avoid memory leaks).
 
#max-requests = 1000
 

	
 
## Log requests slower than the specified number of milliseconds.
 
#log-slow = 10
 

	
 
## Exit if no app can be loaded.
 
#need-app = true
 

	
 
## Set lazy mode (load apps in workers instead of master).
 
#lazy = true
 

	
 
## scaling ##
 
## set cheaper algorithm to use, if not set default will be used
 
#cheaper-algo = spare
 

	
 
# minimum number of workers to keep at all times
 
## minimum number of workers to keep at all times
 
#cheaper = 1
 

	
 
# number of workers to spawn at startup
 
## number of workers to spawn at startup
 
#cheaper-initial = 1
 

	
 
# maximum number of workers that can be spawned
 
## maximum number of workers that can be spawned
 
#workers = 4
 

	
 
# how many workers should be spawned at a time
 
## how many workers should be spawned at a time
 
#cheaper-step = 1
 

	
 
## COMMON ##
 
host = 127.0.0.1
 
port = 5000
 

	
 
## prefix middleware for rc
 
#[filter:proxy-prefix]
 
#use = egg:PasteDeploy#prefix
 
#prefix = /<your-prefix>
 

	
 
[app:main]
 
use = egg:rhodecode
 
## enable proxy prefix middleware
 
#filter-with = proxy-prefix
 

	
 
full_stack = true
 
static_files = true
 
## Optional Languages
 
## en, fr, ja, pt_BR, zh_CN, zh_TW, pl
 
lang = en
 
cache_dir = %(here)s/data
 
index_dir = %(here)s/data/index
 

	
tox.ini
Show inline comments
 
@@ -88,25 +88,25 @@ setenv =
 
    TEST_DB=sqlite:////tmp/rhodecode_test.sqlite
 

	
 
[testenv:py27-mysql]
 
basepython =
 
    python2.7
 
commands =
 
    mysql -uroot -pqwe -hlocalhost -e 'drop database if exists rhodecode_test;'
 
    mysql -uroot -pqwe -hlocalhost -e 'create database rhodecode_test;'
 
    nosetests []
 
deps =
 
    mysql-python
 
setenv = 
 
    TEST_DB=mysql://root:qwe@localhost/rhodecode_test
 

	
 
[testenv:py27-postgresql]
 
basepython =
 
    python2.7
 
commands =
 
    psql -Upostgres -Wqwe -hlocalhost -c 'drop database if exists rhodecode_test;'
 
    psql -Upostgres -Wqwe -hlocalhost -c 'create database rhodecode_test;'
 
    nosetests []
 
deps =
 
    psycopg2    
 
setenv = 
 
    TEST_DB=postgresql://postgres:qwe@localhost/rhodecode_test        
 
\ No newline at end of file
 
    TEST_DB=postgresql://postgres:qwe@localhost/rhodecode_test
0 comments (0 inline, 0 general)