|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- ###
- # app configuration
- # http://docs.pylonsproject.org/projects/pyramid/en/1.5-branch/narr/environment.html
- ###
-
- [app:main]
- use = egg:JM2L
-
- mail.host = localhost
- mail.port = 25
-
- pyramid.reload_templates = false
- pyramid.debug_authorization = false
- pyramid.debug_notfound = false
- pyramid.debug_routematch = false
- pyramid.default_locale_name = fr
- pyramid.includes =
- pyramid_mailer
- pyramid_tm
- pyramid_mako
- pyramid_exclog
-
- sqlalchemy.url = sqlite:///%(here)s/JM2L.sqlite
-
- # Security
- secret_Cookies = 'secret'
- secret_AuthTkt = 'secret2'
-
- [server:main]
- use = egg:waitress#main
- host = 0.0.0.0
- port = 6543
-
- ###
- # logging configuration
- # http://docs.pylonsproject.org/projects/pyramid/en/1.5-branch/narr/logging.html
- ###
-
- [loggers]
- keys = root, jm2l, sqlalchemy
-
- [handlers]
- keys = console
-
- [formatters]
- keys = generic
-
- [logger_root]
- level = WARN
- handlers = console
-
- [logger_jm2l]
- level = WARN
- handlers =
- qualname = jm2l
-
- [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][%(threadName)s] %(message)s
|