diff options
| author | Paul Everitt <paul@agendaless.com> | 2013-08-06 10:12:42 -0400 |
|---|---|---|
| committer | Paul Everitt <paul@agendaless.com> | 2013-08-06 10:12:42 -0400 |
| commit | 71b83e5ea328b654f8463f567ecc054a55a7a90b (patch) | |
| tree | 7ba977a3592446142d5c4ea180d7b71bc2f31dbc /docs/getting_started/quick_glance/package/development.ini | |
| parent | c3e696a0cfb839c97e6c20277dc797dbd5349730 (diff) | |
| download | pyramid-71b83e5ea328b654f8463f567ecc054a55a7a90b.tar.gz pyramid-71b83e5ea328b654f8463f567ecc054a55a7a90b.tar.bz2 pyramid-71b83e5ea328b654f8463f567ecc054a55a7a90b.zip | |
Move sample code into subdirectories. Add sections for requests and views.
Diffstat (limited to 'docs/getting_started/quick_glance/package/development.ini')
| -rw-r--r-- | docs/getting_started/quick_glance/package/development.ini | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/docs/getting_started/quick_glance/package/development.ini b/docs/getting_started/quick_glance/package/development.ini new file mode 100644 index 000000000..9aa5f40cf --- /dev/null +++ b/docs/getting_started/quick_glance/package/development.ini @@ -0,0 +1,52 @@ +[app:hello_world] +pyramid.includes = pyramid_debugtoolbar +use = egg:hello_world +reload_templates = true +debug_authorization = false +debug_notfound = false +debug_routematch = false +debug_templates = true +default_locale_name = en +jinja2.directories = hello_world:templates + + + +[pipeline:main] +pipeline = + hello_world + +[server:main] +use = egg:pyramid#wsgiref +host = 0.0.0.0 +port = 6543 + +# Begin logging configuration + +[loggers] +keys = root, hello_world + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = INFO +handlers = console + +[logger_hello_world] +level = DEBUG +handlers = +qualname = hello_world + +[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 |
