12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- ###
- # app configuration
- # http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
- ###
- [app:main]
- use = call:frameworkbenchmarks:main
- pyramid.reload_templates = false
- pyramid.debug_authorization = false
- pyramid.debug_notfound = false
- pyramid.debug_routematch = false
- pyramid.default_locale_name = en
- sqlalchemy.url = postgresql://benchmarkdbuser:benchmarkdbpass@tfb-database:5432/hello_world
- ###
- # wsgi server configuration
- ###
- [server:main]
- use = egg:gunicorn#main
- host = 0.0.0.0
- port = 8080
- ###
- # logging configuration
- # http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
- ###
- [loggers]
- keys = root, frameworkbenchmarks
- [handlers]
- keys = console
- [formatters]
- keys = generic
- [logger_root]
- level = NOTSET
- handlers = console
- [logger_frameworkbenchmarks]
- level = NOTSET
- handlers =
- qualname = frameworkbenchmarks
- [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
|