summaryrefslogtreecommitdiff
path: root/docs/getting_started/quick_glance/package/development.ini
diff options
context:
space:
mode:
authorPaul Everitt <paul@agendaless.com>2013-08-11 09:53:00 -0400
committerPaul Everitt <paul@agendaless.com>2013-08-11 09:53:00 -0400
commitae901436a61563968cc31cc636f1fbeb5e85b528 (patch)
tree8ce7a18dd4913f7195c5a013ab03eb64ae21180d /docs/getting_started/quick_glance/package/development.ini
parentd4bd291fd5ca51bbbeec487f2011476706a5952f (diff)
downloadpyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.tar.gz
pyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.tar.bz2
pyramid-ae901436a61563968cc31cc636f1fbeb5e85b528.zip
Per discussion with Chris, just wrap up "getting started" as the Quick Tour. Still need to do more linking and perhaps add a section on root factories, authorization, authentication.
Diffstat (limited to 'docs/getting_started/quick_glance/package/development.ini')
-rw-r--r--docs/getting_started/quick_glance/package/development.ini57
1 files changed, 0 insertions, 57 deletions
diff --git a/docs/getting_started/quick_glance/package/development.ini b/docs/getting_started/quick_glance/package/development.ini
deleted file mode 100644
index a751ff903..000000000
--- a/docs/getting_started/quick_glance/package/development.ini
+++ /dev/null
@@ -1,57 +0,0 @@
-# Start Includes
-[app:hello_world]
-pyramid.includes = pyramid_debugtoolbar
-# End Includes
-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
-
-# Start Sphinx Include
-[loggers]
-keys = root, hello_world
-
-[logger_hello_world]
-level = DEBUG
-handlers =
-qualname = hello_world
-# End Sphinx Include
-
-[handlers]
-keys = console
-
-[formatters]
-keys = generic
-
-[logger_root]
-level = INFO
-handlers = console
-
-
-[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