/minger_plus/config/deployment.ini_tmpl
https://bitbucket.org/bwmcadams/mingerplus · Unknown · 63 lines · 51 code · 12 blank · 0 comment · 0 complexity · ab18c7b29f524286f8021839f8085d48 MD5 · raw file
- #
- # minger - Pylons configuration
- #
- # The %(here)s variable will be replaced with the parent directory of this file
- #
- [DEFAULT]
- debug = true
- email_to = you@yourdomain.com
- smtp_server = localhost
- error_email_from = paste@localhost
- [server:main]
- use = egg:Paste#http
- host = 0.0.0.0
- port = 5000
- [app:main]
- use = egg:minger
- full_stack = true
- static_files = true
- pylons.strict_c = true
- cache_dir = %(here)s/data
- beaker.session.key = minger
- beaker.session.secret = ${app_instance_secret}
- app_instance_uuid = ${app_instance_uuid}
- set debug = false
- # Blog settings
- blog.database.host = localhost
- blog.database.port = 27017
- blog.database.db = YOURDB
- blog.database.username = minger
- blog.database.password = minger
- xmlrpc.username = USERNAME
- xmlrpc.password = PASSWORD
- use_minified_assets = true
- minger.minified_css = minger-06122009.1-min.css
- # Logging configuration
- [loggers]
- keys = root
- [handlers]
- keys = console
- [formatters]
- keys = generic
- [logger_root]
- level = INFO
- handlers = console
- [handler_console]
- class = StreamHandler
- args = (sys.stderr,)
- level = NOTSET
- formatter = generic
- [formatter_generic]
- format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s