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.
93 lines
2.0 KiB
93 lines
2.0 KiB
### |
|
# app configuration |
|
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html |
|
### |
|
|
|
[app:main] |
|
use = egg:ordr2 |
|
|
|
pyramid.reload_templates = true |
|
pyramid.debug_authorization = false |
|
pyramid.debug_notfound = false |
|
pyramid.debug_routematch = false |
|
pyramid.default_locale_name = en |
|
pyramid.includes = |
|
pyramid_mailer.debug |
|
pyramid_debugtoolbar |
|
pyramid_jinja2 |
|
|
|
sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite |
|
passlib.config = %(here)s/passlib.ini |
|
|
|
# automatic CSRF token validation on each POST resquest |
|
session.auto_csrf = true |
|
|
|
# cache duration in seconds for static pages |
|
static_views.cache_max_age = 0 |
|
|
|
# secrets for session and authentication |
|
# CHANGE IN PRODUCTION! |
|
auth.secret = Change Me! |
|
session.secret = 4d72ee16df8cf1238048ade32e3ce4d51757af8ada4a962cfae5cea5c08421a0 |
|
|
|
# time a user token is valid (in minutes) |
|
token_expiry.change_email = 120 |
|
token_expiry.reset_password = 120 |
|
token_expiry.user_registration = 120 |
|
|
|
# email delivery |
|
mail.host = localhost |
|
mail.port = 2525 |
|
mail.default_sender = ordr@example.com |
|
|
|
# By default, the toolbar only appears for clients from IP addresses |
|
# '127.0.0.1' and '::1'. |
|
# debugtoolbar.hosts = 127.0.0.1 ::1 |
|
|
|
### |
|
# wsgi server configuration |
|
### |
|
|
|
[server:main] |
|
use = egg:waitress#main |
|
listen = 127.0.0.1:6543 [::1]: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 = INFO |
|
handlers = console |
|
|
|
[logger_ordr2] |
|
level = DEBUG |
|
handlers = |
|
qualname = ordr2 |
|
|
|
[logger_sqlalchemy] |
|
level = INFO |
|
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
|
|
|