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.
84 lines
1.5 KiB
84 lines
1.5 KiB
7 years ago
|
###
|
||
|
# 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
|
||
7 years ago
|
pyramid.includes =
|
||
|
pyramid_mailer
|
||
7 years ago
|
|
||
|
sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite
|
||
|
|
||
7 years ago
|
|
||
|
# email delivery
|
||
|
mail.host = localhost
|
||
|
mail.port = 2525
|
||
|
mail.default_sender = ordr@example.com
|
||
|
|
||
|
|
||
|
# custom settings
|
||
|
auth.secret = 'Change Me 1'
|
||
|
session.secret = 'Change Me 2'
|
||
|
session.auto_csrf = true
|
||
|
static_views.cache_max_age = 0
|
||
|
|
||
|
# custom jinja filters and tests
|
||
|
jinja2.filters =
|
||
|
are_extras_active = ordr2.templates.tests:are_extras_active
|
||
|
|
||
|
|
||
7 years ago
|
###
|
||
|
# 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
|