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.
63 lines
1.2 KiB
63 lines
1.2 KiB
### |
|
# app configuration |
|
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html |
|
### |
|
|
|
[app:main] |
|
use = egg:ordr2 |
|
|
|
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/ordr2.sqlite |
|
|
|
### |
|
# wsgi server configuration |
|
### |
|
|
|
[server:main] |
|
use = egg:waitress#main |
|
listen = *:6543 |
|
|
|
### |
|
# logging configuration |
|
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html |
|
### |
|
|
|
[loggers] |
|
keys = root, ordr2, sqlalchemy |
|
|
|
[handlers] |
|
keys = console |
|
|
|
[formatters] |
|
keys = generic |
|
|
|
[logger_root] |
|
level = WARN |
|
handlers = console |
|
|
|
[logger_ordr2] |
|
level = WARN |
|
handlers = |
|
qualname = ordr2 |
|
|
|
[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
|
|
|