development.ini
605 lines
| 18.0 KiB
| text/x-ini
|
IniLexer
Marcin Kuzminski
|
r12 | ################################################################################ | ||
################################################################################ | ||||
Mads Kiilerich
|
r4225 | # Kallithea - Development config: # | ||
# listening on *:5000 # | ||||
# sqlite and kallithea.db # | ||||
# initial_repo_scan = true # | ||||
# set debug = true # | ||||
# verbose and colorful logging # | ||||
r4068 | # # | |||
Marcin Kuzminski
|
r12 | # The %(here)s variable will be replaced with the parent directory of this file# | ||
################################################################################ | ||||
Mads Kiilerich
|
r4225 | ################################################################################ | ||
Marcin Kuzminski
|
r10 | |||
Marcin Kuzminski
|
r0 | [DEFAULT] | ||
debug = true | ||||
r1355 | pdebug = false | |||
Mads Kiilerich
|
r4225 | |||
r474 | ################################################################################ | |||
Søren Løvborg
|
r5412 | ## Email settings ## | ||
Thomas De Schampheleire
|
r5366 | ## ## | ||
Søren Løvborg
|
r5412 | ## Refer to the documentation ("Email settings") for more details. ## | ||
Thomas De Schampheleire
|
r5366 | ## ## | ||
## It is recommended to use a valid sender address that passes access ## | ||||
## validation and spam filtering in mail servers. ## | ||||
r474 | ################################################################################ | |||
Thomas De Schampheleire
|
r5366 | |||
Søren Løvborg
|
r5412 | ## 'From' header for application emails. You can optionally add a name. | ||
Thomas De Schampheleire
|
r5366 | ## Default: | ||
Thomas De Schampheleire
|
r5365 | #app_email_from = Kallithea | ||
Thomas De Schampheleire
|
r5366 | ## Examples: | ||
Thomas De Schampheleire
|
r5365 | #app_email_from = Kallithea <kallithea-noreply@example.com> | ||
#app_email_from = kallithea-noreply@example.com | ||||
Thomas De Schampheleire
|
r5366 | |||
Søren Løvborg
|
r5412 | ## Subject prefix for application emails. | ||
Thomas De Schampheleire
|
r5366 | ## A space between this prefix and the real subject is automatically added. | ||
## Default: | ||||
Thomas De Schampheleire
|
r5365 | #email_prefix = | ||
Thomas De Schampheleire
|
r5366 | ## Example: | ||
Thomas De Schampheleire
|
r5365 | #email_prefix = [Kallithea] | ||
Søren Løvborg
|
r5412 | ## Recipients for error emails and fallback recipients of application mails. | ||
Thomas De Schampheleire
|
r5366 | ## Multiple addresses can be specified, space-separated. | ||
## Only addresses are allowed, do not add any name part. | ||||
## Default: | ||||
#email_to = | ||||
## Examples: | ||||
Thomas De Schampheleire
|
r5365 | #email_to = admin@example.com | ||
#email_to = admin@example.com another_admin@example.com | ||||
Thomas De Schampheleire
|
r5366 | |||
Søren Løvborg
|
r5412 | ## 'From' header for error emails. You can optionally add a name. | ||
Thomas De Schampheleire
|
r5366 | ## Default: | ||
Thomas De Schampheleire
|
r5365 | #error_email_from = pylons@yourapp.com | ||
Thomas De Schampheleire
|
r5366 | ## Examples: | ||
Thomas De Schampheleire
|
r5365 | #error_email_from = Kallithea Errors <kallithea-noreply@example.com> | ||
#error_email_from = paste_error@example.com | ||||
r474 | ||||
Thomas De Schampheleire
|
r5366 | ## SMTP server settings | ||
Mads Kiilerich
|
r5844 | ## If specifying credentials, make sure to use secure connections. | ||
## Default: Send unencrypted unauthenticated mails to the specified smtp_server. | ||||
## For "SSL", use smtp_use_ssl = true and smtp_port = 465. | ||||
## For "STARTTLS", use smtp_use_tls = true and smtp_port = 587. | ||||
Søren Løvborg
|
r5497 | #smtp_server = smtp.example.com | ||
r4068 | #smtp_username = | |||
#smtp_password = | ||||
Thomas De Schampheleire
|
r5365 | #smtp_port = 25 | ||
Mads Kiilerich
|
r5844 | #smtp_use_ssl = false | ||
r776 | #smtp_use_tls = false | |||
Marcin Kuzminski
|
r0 | |||
[server:main] | ||||
r3902 | ## PASTE ## | |||
#use = egg:Paste#http | ||||
## nr of worker threads to spawn | ||||
r2597 | #threadpool_workers = 5 | |||
r3557 | ## max request before thread respawn | |||
r2597 | #threadpool_max_requests = 10 | |||
r3557 | ## option to use threads of process | |||
r2597 | #use_threadpool = true | |||
Marcin Kuzminski
|
r86 | |||
r3902 | ## WAITRESS ## | |||
use = egg:waitress#main | ||||
## number of worker threads | ||||
r3087 | threads = 5 | |||
r3902 | ## MAX BODY SIZE 100GB | |||
r3376 | max_request_body_size = 107374182400 | |||
r3902 | ## use poll instead of select, fixes fd limits, may not work on old | |||
## windows systems. | ||||
r3938 | #asyncore_use_poll = True | |||
r3087 | ||||
r3902 | ## GUNICORN ## | |||
#use = egg:gunicorn#main | ||||
r3935 | ## number of process workers. You must set `instance_id = *` when this option | |||
## is set to more than one worker | ||||
r3902 | #workers = 1 | |||
## process name | ||||
Bradley M. Kuhn
|
r4210 | #proc_name = kallithea | ||
r3902 | ## type of worker class, one of sync, eventlet, gevent, tornado | |||
## recommended for bigger setup is using of of other than sync one | ||||
r3945 | #worker_class = sync | |||
Mads Kiilerich
|
r4225 | #max_requests = 1000 | ||
timeless@gmail.com
|
r5784 | ## amount of time a worker can handle request before it gets killed and | ||
r3964 | ## restarted | |||
#timeout = 3600 | ||||
r3902 | ||||
r4066 | ## UWSGI ## | |||
## run with uwsgi --ini-paste-logged <inifile.ini> | ||||
#[uwsgi] | ||||
#socket = /tmp/uwsgi.sock | ||||
#master = true | ||||
Mads Kiilerich
|
r4225 | #http = 127.0.0.1:5000 | ||
r4066 | ||||
## set as deamon and redirect all output to file | ||||
Bradley M. Kuhn
|
r4210 | #daemonize = ./uwsgi_kallithea.log | ||
r4066 | ||||
## master process PID | ||||
Bradley M. Kuhn
|
r4210 | #pidfile = ./uwsgi_kallithea.pid | ||
r4066 | ||||
## stats server with workers statistics, use uwsgitop | ||||
## for monitoring, `uwsgitop 127.0.0.1:1717` | ||||
#stats = 127.0.0.1:1717 | ||||
r4078 | #memory-report = true | |||
r4066 | ||||
## 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 | ||||
r4086 | ## enable large buffers | |||
Mads Kiilerich
|
r5364 | #buffer-size = 65535 | ||
r4086 | ||||
r4092 | ## socket and http timeouts ## | |||
Mads Kiilerich
|
r5364 | #http-timeout = 3600 | ||
#socket-timeout = 3600 | ||||
r4092 | ||||
r4066 | ## 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 | ||||
r4068 | ## minimum number of workers to keep at all times | |||
r4066 | #cheaper = 1 | |||
r4068 | ## number of workers to spawn at startup | |||
r4066 | #cheaper-initial = 1 | |||
r4068 | ## maximum number of workers that can be spawned | |||
r4066 | #workers = 4 | |||
r4068 | ## how many workers should be spawned at a time | |||
r4066 | #cheaper-step = 1 | |||
r3902 | ## COMMON ## | |||
Mads Kiilerich
|
r5536 | #host = 127.0.0.1 | ||
r716 | host = 0.0.0.0 | |||
Marcin Kuzminski
|
r12 | port = 5000 | ||
Marcin Kuzminski
|
r0 | |||
Mads Kiilerich
|
r5079 | ## middleware for hosting the WSGI application under a URL prefix | ||
r3557 | #[filter:proxy-prefix] | |||
#use = egg:PasteDeploy#prefix | ||||
#prefix = /<your-prefix> | ||||
r2615 | ||||
Marcin Kuzminski
|
r0 | [app:main] | ||
Bradley M. Kuhn
|
r4186 | use = egg:kallithea | ||
r3557 | ## enable proxy prefix middleware | |||
r2615 | #filter-with = proxy-prefix | |||
r3557 | ||||
Marcin Kuzminski
|
r0 | full_stack = true | ||
r253 | static_files = true | |||
Mads Kiilerich
|
r4225 | ## Available Languages: | ||
Mads Kiilerich
|
r4985 | ## cs de fr hu ja nl_BE pl pt_BR ru sk zh_CN zh_TW | ||
lang = | ||||
Marcin Kuzminski
|
r0 | cache_dir = %(here)s/data | ||
r683 | index_dir = %(here)s/data/index | |||
r3557 | ||||
r3778 | ## perform a full repository scan on each server start, this should be | |||
## set to false after first startup, to allow faster server restarts. | ||||
Mads Kiilerich
|
r4225 | #initial_repo_scan = false | ||
r3778 | initial_repo_scan = true | |||
r3557 | ## uncomment and set this path to use archive download cache | |||
Mads Kiilerich
|
r4225 | archive_cache_dir = %(here)s/tarballcache | ||
r3557 | ||||
## change this to unique ID for security | ||||
Mads Kiilerich
|
r4225 | app_instance_uuid = development-not-secret | ||
r3557 | ||||
## cut off limit for large diffs (size in bytes) | ||||
r812 | cut_off_limit = 256000 | |||
r3557 | ||||
Bradley M. Kuhn
|
r4212 | ## force https in Kallithea, fixes https redirects, assumes it's always https | ||
r914 | force_https = false | |||
r3557 | ||||
## use Strict-Transport-Security headers | ||||
r3359 | use_htsts = false | |||
r3557 | ||||
## number of commits stats will parse on each iteration | ||||
r1076 | commit_parse_limit = 25 | |||
r3557 | ||||
## path to git executable | ||||
r3376 | git_path = git | |||
r3561 | ## git rev filter option, --all is the default filter, if you need to | |||
## hide all refs in changelog switch this to --branches --tags | ||||
Mads Kiilerich
|
r4225 | #git_rev_filter = --branches --tags | ||
r3561 | ||||
r3028 | ## RSS feed options | |||
rss_cut_off_limit = 256000 | ||||
rss_items_per_page = 10 | ||||
rss_include_diff = false | ||||
Mads Kiilerich
|
r3651 | ## options for showing and identifying changesets | ||
show_sha_length = 12 | ||||
domruf
|
r4549 | show_revision_number = false | ||
r3557 | ||||
Mads Kiilerich
|
r5845 | ## Canonical URL to use when creating full URLs in UI and texts. | ||
## Useful when the site is available under different names or protocols. | ||||
## Defaults to what is provided in the WSGI environment. | ||||
#canonical_url = https://kallithea.example.com/repos | ||||
r3850 | ## gist URL alias, used to create nicer urls for gist. This should be an | |||
r4066 | ## url that does rewrites to _admin/gists/<gistid>. | |||
Søren Løvborg
|
r5497 | ## example: http://gist.example.com/{gistid}. Empty means use the internal | ||
## Kallithea url, ie. http[s]://kallithea.example.com/_admin/gists/<gistid> | ||||
r3850 | gist_alias_url = | |||
r3751 | ## white list of API enabled controllers. This allows to add list of | |||
## controllers to which access will be enabled by api_key. eg: to enable | ||||
## api access to raw_files put `FilesController:raw`, to enable access to patches | ||||
## add `ChangesetController:changeset_patch`. This list should be "," separated | ||||
## Syntax is <ControllerClass>:<function>. Check debug logs for generated names | ||||
Mads Kiilerich
|
r4225 | ## Recommended settings below are commented out: | ||
r3751 | api_access_controllers_whitelist = | |||
r4066 | # ChangesetController:changeset_patch, | |||
# ChangesetController:changeset_raw, | ||||
# FilesController:raw, | ||||
# FilesController:archivefile | ||||
r3028 | ||||
r3008 | ## default encoding used to convert from and to unicode | |||
timeless@gmail.com
|
r5827 | ## can be also a comma separated list of encoding in case of mixed encodings | ||
r2016 | default_encoding = utf8 | |||
Marcin Kuzminski
|
r0 | |||
Bradley M. Kuhn
|
r4212 | ## issue tracker for Kallithea (leave blank to disable, absent for default) | ||
Bradley M. Kuhn
|
r4179 | #bugtracker = https://bitbucket.org/conservancy/kallithea/issues | ||
Jonathan Sternberg
|
r4006 | |||
r1837 | ## issue tracking mapping for commits messages | |||
r1933 | ## comment out issue_pat, issue_server, issue_prefix to enable | |||
r1837 | ||||
## pattern to get the issues from commit messages | ||||
r1933 | ## default one used here is #<numbers> with a regex passive group for `#` | |||
## {id} will be all groups matched from this pattern | ||||
r1837 | ||||
r1933 | issue_pat = (?:\s*#)(\d+) | |||
r1837 | ||||
r1933 | ## server url to the issue, each {id} will be replaced with match | |||
r2339 | ## fetched from the regex and {repo} is replaced with full repository name | |||
## including groups {repo_name} is replaced with just name of repo | ||||
r1837 | ||||
Søren Løvborg
|
r5497 | issue_server_link = https://issues.example.com/{repo}/issue/{id} | ||
r1837 | ||||
## prefix to add to link to indicate it's an url | ||||
## #314 will be replaced by <issue_prefix><id> | ||||
r1865 | issue_prefix = # | |||
r1837 | ||||
r2866 | ## issue_pat, issue_server_link, issue_prefix can have suffixes to specify | |||
## multiple patterns, to other issues server, wiki or others | ||||
r4068 | ## below an example how to create a wiki pattern | |||
Søren Løvborg
|
r5497 | # wiki-some-id -> https://wiki.example.com/some-id | ||
r2866 | ||||
#issue_pat_wiki = (?:wiki-)(.+) | ||||
Søren Løvborg
|
r5497 | #issue_server_link_wiki = https://wiki.example.com/{id} | ||
r2866 | #issue_prefix_wiki = WIKI- | |||
r2132 | ## alternative return HTTP header for failed authentication. Default HTTP | |||
Na'Tosha Bard
|
r4527 | ## response is 401 HTTPUnauthorized. Currently Mercurial clients have trouble with | ||
r2132 | ## handling that. Set this variable to 403 to return HTTPForbidden | |||
auth_ret_code = | ||||
r3522 | ## locking return code. When repository is locked return this HTTP code. 2XX | |||
## codes don't break the transactions while 4XX codes do | ||||
lock_ret_code = 423 | ||||
r4045 | ## allows to change the repository location in settings page | |||
r3920 | allow_repo_location_change = True | |||
r3522 | ||||
r4045 | ## allows to setup custom hooks in settings page | |||
allow_custom_hooks_settings = True | ||||
Takumi IINO
|
r5559 | ## extra extensions for indexing, space separated and without the leading '.'. | ||
# index.extensions = | ||||
# gemfile | ||||
# lock | ||||
## extra filenames for indexing, space separated | ||||
# index.filenames = | ||||
# .dockerignore | ||||
# .editorconfig | ||||
# INSTALL | ||||
# CHANGELOG | ||||
Marcin Kuzminski
|
r49 | #################################### | ||
r776 | ### CELERY CONFIG #### | |||
#################################### | ||||
Mads Kiilerich
|
r4225 | |||
r776 | use_celery = false | |||
broker.host = localhost | ||||
broker.vhost = rabbitmqhost | ||||
broker.port = 5672 | ||||
broker.user = rabbitmq | ||||
broker.password = qweqwe | ||||
Bradley M. Kuhn
|
r4186 | celery.imports = kallithea.lib.celerylib.tasks | ||
r776 | ||||
celery.result.backend = amqp | ||||
celery.result.dburi = amqp:// | ||||
celery.result.serialier = json | ||||
#celery.send.task.error.emails = true | ||||
#celery.amqp.task.result.expires = 18000 | ||||
celeryd.concurrency = 2 | ||||
#celeryd.log.file = celeryd.log | ||||
Mads Kiilerich
|
r4940 | celeryd.log.level = DEBUG | ||
r1076 | celeryd.max.tasks.per.child = 1 | |||
r776 | ||||
r3557 | ## tasks will never be sent to the queue, but executed locally instead. | |||
r776 | celery.always.eager = false | |||
#################################### | ||||
Marcin Kuzminski
|
r49 | ### BEAKER CACHE #### | ||
#################################### | ||||
Mads Kiilerich
|
r4225 | |||
Mads Kiilerich
|
r5364 | beaker.cache.data_dir = %(here)s/data/cache/data | ||
beaker.cache.lock_dir = %(here)s/data/cache/lock | ||||
r1076 | ||||
Mads Kiilerich
|
r5399 | beaker.cache.regions = short_term,long_term,sql_cache_short | ||
r609 | ||||
Mads Kiilerich
|
r5364 | beaker.cache.short_term.type = memory | ||
beaker.cache.short_term.expire = 60 | ||||
r1607 | beaker.cache.short_term.key_length = 256 | |||
r609 | ||||
Mads Kiilerich
|
r5364 | beaker.cache.long_term.type = memory | ||
beaker.cache.long_term.expire = 36000 | ||||
r1607 | beaker.cache.long_term.key_length = 256 | |||
r597 | ||||
Mads Kiilerich
|
r5364 | beaker.cache.sql_cache_short.type = memory | ||
beaker.cache.sql_cache_short.expire = 10 | ||||
r1607 | beaker.cache.sql_cache_short.key_length = 256 | |||
r609 | ||||
r436 | #################################### | |||
### BEAKER SESSION #### | ||||
#################################### | ||||
Mads Kiilerich
|
r5400 | |||
## Name of session cookie. Should be unique for a given host and path, even when running | ||||
## on different ports. Otherwise, cookie sessions will be shared and messed up. | ||||
beaker.session.key = kallithea | ||||
## Sessions should always only be accessible by the browser, not directly by JavaScript. | ||||
beaker.session.httponly = true | ||||
## Session lifetime. 2592000 seconds is 30 days. | ||||
beaker.session.timeout = 2592000 | ||||
## Server secret used with HMAC to ensure integrity of cookies. | ||||
beaker.session.secret = development-not-secret | ||||
## Further, encrypt the data with AES. | ||||
#beaker.session.encrypt_key = <key_for_encryption> | ||||
#beaker.session.validate_key = <validation_key> | ||||
r4068 | ## Type of storage used for the session, current types are | |||
## dbm, file, memcached, database, and memory. | ||||
Mads Kiilerich
|
r5400 | |||
## File system storage of session data. (default) | ||||
#beaker.session.type = file | ||||
r1660 | ||||
Mads Kiilerich
|
r5400 | ## Cookie only, store all session data inside the cookie. Requires secure secrets. | ||
#beaker.session.type = cookie | ||||
## Database storage of session data. | ||||
r1660 | #beaker.session.type = ext:database | |||
Bradley M. Kuhn
|
r4210 | #beaker.session.sa.url = postgresql://postgres:qwe@localhost/kallithea | ||
r4068 | #beaker.session.table_name = db_session | |||
r1660 | ||||
r2939 | ############################ | |||
## ERROR HANDLING SYSTEMS ## | ||||
############################ | ||||
#################### | ||||
### [errormator] ### | ||||
#################### | ||||
Bradley M. Kuhn
|
r4212 | ## Errormator is tailored to work with Kallithea, see | ||
r3557 | ## http://errormator.com for details how to obtain an account | |||
## you must install python package `errormator_client` to make it work | ||||
r2939 | ||||
r3557 | ## errormator enabled | |||
errormator = false | ||||
r2939 | ||||
errormator.server_url = https://api.errormator.com | ||||
errormator.api_key = YOUR_API_KEY | ||||
r3557 | ## TWEAK AMOUNT OF INFO SENT HERE | |||
r2939 | ||||
r3557 | ## enables 404 error logging (default False) | |||
r2939 | errormator.report_404 = false | |||
r3557 | ## time in seconds after request is considered being slow (default 1) | |||
r2939 | errormator.slow_request_time = 1 | |||
r3557 | ## record slow requests in application | |||
## (needs to be enabled for slow datastore recording and time tracking) | ||||
r2939 | errormator.slow_requests = true | |||
r3557 | ## enable hooking to application loggers | |||
Mads Kiilerich
|
r5364 | #errormator.logging = true | ||
r2939 | ||||
r3557 | ## minimum log level for log capture | |||
Mads Kiilerich
|
r5364 | #errormator.logging.level = WARNING | ||
r2939 | ||||
r3557 | ## send logs only from erroneous/slow requests | |||
## (saves API quota for intensive logging) | ||||
r2939 | errormator.logging_on_error = false | |||
timeless@gmail.com
|
r5782 | ## list of additional keywords that should be grabbed from environ object | ||
r3557 | ## can be string with comma separated list of words in lowercase | |||
## (by default client will always send following info: | ||||
r4068 | ## 'REMOTE_USER', 'REMOTE_ADDR', 'SERVER_NAME', 'CONTENT_TYPE' + all keys that | |||
r3557 | ## start with HTTP* this list be extended with additional keywords here | |||
r4068 | errormator.environ_keys_whitelist = | |||
r2939 | ||||
r4068 | ## list of keywords that should be blanked from request object | |||
r3557 | ## can be string with comma separated list of words in lowercase | |||
r4068 | ## (by default client will always blank keys that contain following words | |||
r3557 | ## 'password', 'passwd', 'pwd', 'auth_tkt', 'secret', 'csrf' | |||
## this list be extended with additional keywords set here | ||||
r2939 | errormator.request_keys_blacklist = | |||
r3557 | ## list of namespaces that should be ignores when gathering log entries | |||
## can be string with comma separated list of namespaces | ||||
## (by default the client ignores own entries: errormator_client.client) | ||||
r4068 | errormator.log_namespace_blacklist = | |||
r2939 | ||||
################ | ||||
### [sentry] ### | ||||
################ | ||||
r3557 | ## sentry is a alternative open source error aggregator | |||
r4068 | ## you must install python packages `sentry` and `raven` to enable | |||
r2939 | ||||
sentry.dsn = YOUR_DNS | ||||
sentry.servers = | ||||
sentry.name = | ||||
sentry.key = | ||||
sentry.public_key = | ||||
sentry.secret_key = | ||||
sentry.project = | ||||
sentry.site = | ||||
sentry.include_paths = | ||||
sentry.exclude_paths = | ||||
Marcin Kuzminski
|
r12 | ################################################################################ | ||
## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ## | ||||
## Debug mode will enable the interactive debugging tool, allowing ANYONE to ## | ||||
## execute malicious code after an exception is raised. ## | ||||
################################################################################ | ||||
#set debug = false | ||||
Mads Kiilerich
|
r4225 | set debug = true | ||
Marcin Kuzminski
|
r0 | |||
Marcin Kuzminski
|
r49 | ################################## | ||
### LOGVIEW CONFIG ### | ||||
################################## | ||||
Mads Kiilerich
|
r4225 | |||
Marcin Kuzminski
|
r49 | logview.sqlalchemy = #faa | ||
logview.pylons.templating = #bfb | ||||
logview.pylons.util = #eee | ||||
######################################################### | ||||
### DB CONFIGS - EACH DB WILL HAVE IT'S OWN CONFIG ### | ||||
######################################################### | ||||
Mads Kiilerich
|
r4225 | |||
# SQLITE [default] | ||||
sqlalchemy.db1.url = sqlite:///%(here)s/kallithea.db?timeout=60 | ||||
# POSTGRESQL | ||||
Mads Kiilerich
|
r5364 | #sqlalchemy.db1.url = postgresql://user:pass@localhost/kallithea | ||
Mads Kiilerich
|
r4225 | |||
# MySQL | ||||
Mads Kiilerich
|
r5600 | #sqlalchemy.db1.url = mysql://user:pass@localhost/kallithea?charset=utf8 | ||
Mads Kiilerich
|
r4225 | |||
# see sqlalchemy docs for others | ||||
r1360 | sqlalchemy.db1.echo = false | |||
r1186 | sqlalchemy.db1.pool_recycle = 3600 | |||
Marcin Kuzminski
|
r49 | |||
Marcin Kuzminski
|
r12 | ################################ | ||
Søren Løvborg
|
r5982 | ### ALEMBIC CONFIGURATION #### | ||
################################ | ||||
[alembic] | ||||
script_location = kallithea:alembic | ||||
################################ | ||||
Marcin Kuzminski
|
r12 | ### LOGGING CONFIGURATION #### | ||
################################ | ||||
Mads Kiilerich
|
r4225 | |||
Marcin Kuzminski
|
r0 | [loggers] | ||
Bradley M. Kuhn
|
r4207 | keys = root, routes, kallithea, sqlalchemy, beaker, templates, whoosh_indexer | ||
Marcin Kuzminski
|
r0 | |||
[handlers] | ||||
r1186 | keys = console, console_sql | |||
Marcin Kuzminski
|
r0 | |||
[formatters] | ||||
r1186 | keys = generic, color_formatter, color_formatter_sql | |||
Marcin Kuzminski
|
r0 | |||
Marcin Kuzminski
|
r12 | ############# | ||
Marcin Kuzminski
|
r0 | ## LOGGERS ## | ||
Marcin Kuzminski
|
r12 | ############# | ||
Mads Kiilerich
|
r4225 | |||
Marcin Kuzminski
|
r0 | [logger_root] | ||
Marcin Kuzminski
|
r15 | level = NOTSET | ||
Marcin Kuzminski
|
r12 | handlers = console | ||
Marcin Kuzminski
|
r0 | |||
[logger_routes] | ||||
Marcin Kuzminski
|
r69 | level = DEBUG | ||
r4068 | handlers = | |||
Marcin Kuzminski
|
r0 | qualname = routes.middleware | ||
r3557 | ## "level = DEBUG" logs the route matched and routing variables. | |||
r1186 | propagate = 1 | |||
Marcin Kuzminski
|
r0 | |||
r716 | [logger_beaker] | |||
r1186 | level = DEBUG | |||
r4068 | handlers = | |||
r716 | qualname = beaker.container | |||
r1186 | propagate = 1 | |||
r716 | ||||
[logger_templates] | ||||
level = INFO | ||||
r4068 | handlers = | |||
r716 | qualname = pylons.templating | |||
r1186 | propagate = 1 | |||
r716 | ||||
Bradley M. Kuhn
|
r4207 | [logger_kallithea] | ||
Marcin Kuzminski
|
r0 | level = DEBUG | ||
r4068 | handlers = | |||
Bradley M. Kuhn
|
r4207 | qualname = kallithea | ||
r1186 | propagate = 1 | |||
Marcin Kuzminski
|
r12 | |||
[logger_sqlalchemy] | ||||
r1186 | level = INFO | |||
handlers = console_sql | ||||
Marcin Kuzminski
|
r12 | qualname = sqlalchemy.engine | ||
r93 | propagate = 0 | |||
Marcin Kuzminski
|
r12 | |||
r2102 | [logger_whoosh_indexer] | |||
level = DEBUG | ||||
r4068 | handlers = | |||
r2102 | qualname = whoosh_indexer | |||
propagate = 1 | ||||
Marcin Kuzminski
|
r12 | ############## | ||
Marcin Kuzminski
|
r0 | ## HANDLERS ## | ||
Marcin Kuzminski
|
r12 | ############## | ||
Marcin Kuzminski
|
r0 | |||
[handler_console] | ||||
class = StreamHandler | ||||
args = (sys.stderr,) | ||||
Mads Kiilerich
|
r4225 | #level = INFO | ||
Mads Kiilerich
|
r5536 | level = DEBUG | ||
Mads Kiilerich
|
r4225 | #formatter = generic | ||
r153 | formatter = color_formatter | |||
Marcin Kuzminski
|
r0 | |||
r1186 | [handler_console_sql] | |||
class = StreamHandler | ||||
args = (sys.stderr,) | ||||
Mads Kiilerich
|
r4225 | #level = WARN | ||
Mads Kiilerich
|
r5536 | level = DEBUG | ||
Mads Kiilerich
|
r4225 | #formatter = generic | ||
r1186 | formatter = color_formatter_sql | |||
Marcin Kuzminski
|
r12 | ################ | ||
Marcin Kuzminski
|
r0 | ## FORMATTERS ## | ||
Marcin Kuzminski
|
r12 | ################ | ||
Marcin Kuzminski
|
r0 | |||
[formatter_generic] | ||||
r153 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | |||
Marcin Kuzminski
|
r46 | datefmt = %Y-%m-%d %H:%M:%S | ||
Marcin Kuzminski
|
r0 | |||
r153 | [formatter_color_formatter] | |||
Mads Kiilerich
|
r5364 | class = kallithea.lib.colored_formatter.ColorFormatter | ||
format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | ||||
r1186 | datefmt = %Y-%m-%d %H:%M:%S | |||
[formatter_color_formatter_sql] | ||||
Mads Kiilerich
|
r5364 | class = kallithea.lib.colored_formatter.ColorFormatterSql | ||
format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | ||||
r1278 | datefmt = %Y-%m-%d %H:%M:%S | |||