PageRenderTime 17ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/development.ini

https://bitbucket.org/bbangert/kai/
INI | 91 lines | 58 code | 19 blank | 14 comment | 0 complexity | befb18926f489cbb2a94c029031b7341 MD5 | raw file
  1. #
  2. # kai - Pylons development environment configuration
  3. #
  4. # The %(here)s variable will be replaced with the parent directory of this file
  5. #
  6. [DEFAULT]
  7. debug = true
  8. # Uncomment and replace with the address which should receive any error reports
  9. #email_to = you@yourdomain.com
  10. smtp_server = localhost
  11. error_email_from = paste@localhost
  12. [server:main]
  13. use = egg:PasteScript#cherrypy
  14. host = 127.0.0.1
  15. port = 5000
  16. request_queue_size = 200
  17. [app:main]
  18. use = egg:kai
  19. full_stack = true
  20. lang = en
  21. cache_dir = %(here)s/data
  22. beaker.session.key = kai
  23. beaker.session.secret = f372f080297ceae27f15f116dd8dfe6f
  24. beaker.session.validate_key = 163e1719ad8eabc00f3539c4e8933d0e
  25. beaker.session.type = cookie
  26. beaker.cache.type = ext:memcached
  27. beaker.cache.url = 127.0.0.1:11211
  28. couchdb_server = http://localhost:5984/
  29. couchdb_uri = http://localhost:5984/pylonshq
  30. doc.security_key = YHEBJYsq9L6KrQayA
  31. openid.base_url = http://openid.localhost.com:5050/
  32. buildbot_server = http://groovie.org:8010/xmlrpc
  33. use_minified_assets = false
  34. phq.minified_css = phq-06032010.5-min.css
  35. cache_enabled = false
  36. # Content Distribution Network
  37. cdn.uri = http://pylons.cachefly.net
  38. # Location of path for storing project images
  39. image_dir = %(here)s/project_images
  40. # Location of the directory that contains the pylons doc dir
  41. doc_dir = /users/someone/pylons/
  42. # Download files
  43. download_dir = /Users/ben/Programming/Python/download
  44. # Docs dir (For pre-0.9.7 docs)
  45. doc_dir = %(here)s/docs
  46. # Logging configuration
  47. [loggers]
  48. keys = root, routes, kai
  49. [handlers]
  50. keys = console
  51. [formatters]
  52. keys = generic
  53. [logger_root]
  54. level = DEBUG
  55. handlers = console
  56. [logger_routes]
  57. level = INFO
  58. handlers =
  59. qualname = routes.middleware
  60. # "level = DEBUG" logs the route matched and routing variables.
  61. [logger_kai]
  62. level = DEBUG
  63. handlers =
  64. qualname = kai
  65. [handler_console]
  66. class = StreamHandler
  67. args = (sys.stderr,)
  68. level = NOTSET
  69. formatter = generic
  70. [formatter_generic]
  71. format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
  72. datefmt = %H:%M:%S