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