You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.2 KiB
66 lines
1.2 KiB
7 years ago
|
###
|
||
|
# app configuration
|
||
|
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
|
||
|
###
|
||
|
|
||
|
[app:main]
|
||
|
use = egg:ordr
|
||
|
|
||
|
pyramid.reload_templates = false
|
||
|
pyramid.debug_authorization = false
|
||
|
pyramid.debug_notfound = false
|
||
|
pyramid.debug_routematch = false
|
||
|
pyramid.default_locale_name = en
|
||
|
|
||
|
sqlalchemy.url = sqlite:///%(here)s/ordr.sqlite
|
||
|
|
||
|
retry.attempts = 3
|
||
|
|
||
|
###
|
||
|
# wsgi server configuration
|
||
|
###
|
||
|
|
||
|
[server:main]
|
||
|
use = egg:waitress#main
|
||
|
listen = *:6543
|
||
|
|
||
|
###
|
||
|
# logging configuration
|
||
|
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
|
||
|
###
|
||
|
|
||
|
[loggers]
|
||
|
keys = root, ordr, sqlalchemy
|
||
|
|
||
|
[handlers]
|
||
|
keys = console
|
||
|
|
||
|
[formatters]
|
||
|
keys = generic
|
||
|
|
||
|
[logger_root]
|
||
|
level = WARN
|
||
|
handlers = console
|
||
|
|
||
|
[logger_ordr]
|
||
|
level = WARN
|
||
|
handlers =
|
||
|
qualname = ordr
|
||
|
|
||
|
[logger_sqlalchemy]
|
||
|
level = WARN
|
||
|
handlers =
|
||
|
qualname = sqlalchemy.engine
|
||
|
# "level = INFO" logs SQL queries.
|
||
|
# "level = DEBUG" logs SQL queries and results.
|
||
|
# "level = WARN" logs neither. (Recommended for production systems.)
|
||
|
|
||
|
[handler_console]
|
||
|
class = StreamHandler
|
||
|
args = (sys.stderr,)
|
||
|
level = NOTSET
|
||
|
formatter = generic
|
||
|
|
||
|
[formatter_generic]
|
||
|
format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s
|