/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

  1. #
  2. # minger - Pylons configuration
  3. #
  4. # The %(here)s variable will be replaced with the parent directory of this file
  5. #
  6. [DEFAULT]
  7. debug = true
  8. email_to = you@yourdomain.com
  9. smtp_server = localhost
  10. error_email_from = paste@localhost
  11. [server:main]
  12. use = egg:Paste#http
  13. host = 0.0.0.0
  14. port = 5000
  15. [app:main]
  16. use = egg:minger
  17. full_stack = true
  18. static_files = true
  19. pylons.strict_c = true
  20. cache_dir = %(here)s/data
  21. beaker.session.key = minger
  22. beaker.session.secret = ${app_instance_secret}
  23. app_instance_uuid = ${app_instance_uuid}
  24. set debug = false
  25. # Blog settings
  26. blog.database.host = localhost
  27. blog.database.port = 27017
  28. blog.database.db = YOURDB
  29. blog.database.username = minger
  30. blog.database.password = minger
  31. xmlrpc.username = USERNAME
  32. xmlrpc.password = PASSWORD
  33. use_minified_assets = true
  34. minger.minified_css = minger-06122009.1-min.css
  35. # Logging configuration
  36. [loggers]
  37. keys = root
  38. [handlers]
  39. keys = console
  40. [formatters]
  41. keys = generic
  42. [logger_root]
  43. level = INFO
  44. handlers = console
  45. [handler_console]
  46. class = StreamHandler
  47. args = (sys.stderr,)
  48. level = NOTSET
  49. formatter = generic
  50. [formatter_generic]
  51. format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s