diff --git a/.gitignore b/.gitignore index 73d53f7..d81ab70 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,3 @@ *.pyc *.pid *.log -development.ini diff --git a/development.ini b/development.ini new file mode 100644 index 0000000..f52aca5 --- /dev/null +++ b/development.ini @@ -0,0 +1,77 @@ +### +# app configuration +# http://docs.pylonsproject.org/projects/pyramid/en/1.7-branch/narr/environment.html +### + +[app:main] +use = egg:mondumas + +pyramid.reload_templates = true +pyramid.debug_authorization = false +pyramid.debug_notfound = false +pyramid.debug_routematch = false +pyramid.default_locale_name = en +pyramid.includes = + pyramid_chameleon + pyramid_debugtoolbar + pyramid_layout + pyramid_mailer + pyramid_tm + + +sqlalchemy.url = mysql://phuoc:phuoc!@192.168.1.17/bddevfac?charset=utf8 +# sqlalchemy.url = mysql://phuoc:phuoc!@192.168.0.31/bddevfac?charset=utf8 + +mondumas.admin_email = cao.thien-phuoc@orange.fr +mondumas.devfac_url = mondumas:static/DEVFAC/DOCS_ATTACHES/ +mondumas.devfac_dir = /DEVFAC14/DOCS_ATTACHES + +# Mailer configuration +mail.host = smtp.orange.fr +mail.port = 25 +mail.username = cao.thien-phuoc@orange.fr + +[server:main] +use = egg:waitress#main +host = 0.0.0.0 +port = 9180 + +### +# logging configuration +# http://docs.pylonsproject.org/projects/pyramid/en/1.7-branch/narr/logging.html +### + +[loggers] +keys = root, mondumas, sqlalchemy + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = INFO +handlers = console + +[logger_mondumas] +level = DEBUG +handlers = +qualname = mondumas + +[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