Skip to content

Instantly share code, notes, and snippets.

@pauleveritt
Created January 17, 2012 18:02
Show Gist options
  • Save pauleveritt/1627859 to your computer and use it in GitHub Desktop.
Save pauleveritt/1627859 to your computer and use it in GitHub Desktop.
bottlecap development.ini
[app:main]
use = egg:sample
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
pyramid.includes = pyramid_debugtoolbar
bottlecap.site_title = SAMPLE
bottlecap.site_title_link = /
bottlecap.use_css_pie = true
bottlecap.devmode = true
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
# Begin logging configuration
[loggers]
keys = root, sample
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_sample]
level = DEBUG
handlers =
qualname = sample
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment