### # app configuration # http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html ### [pipeline:main] pipeline = gzip sealevel [filter:gzip] use = egg:Paste#gzip [app:sealevel] use = egg:sealevel pyramid.reload_templates = true pyramid.debug_authorization = false pyramid.debug_notfound = false pyramid.debug_routematch = false pyramid.default_locale_name = en pyramid.includes = pyramid_debugtoolbar pyramid_mako pyramid_beaker mako.directories = sealevel:templates cache.regions = default_term, second, short_term, long_term cache.type = memory cache.second.expire = 1 cache.short_term.expire = 60 cache.default_term.expire = 300 cache.long_term.expire = 3600 # 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 host = 0.0.0.0 port = 6543 ### # logging configuration # http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html ### [loggers] keys = root, sealevel [handlers] keys = console [formatters] keys = generic [logger_root] level = INFO handlers = console [logger_sealevel] level = DEBUG handlers = qualname = sealevel [handler_console] class = StreamHandler args = (sys.stderr,) level = NOTSET formatter = generic [formatter_generic] format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s