summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/scaffolds/development.ini
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-26 23:11:28 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-26 23:11:28 -0800
commit558f3e772a1416ebdd9cd8122c0aeac3f0b0d72c (patch)
tree21966586f22074b00d058c2f032cec326b3e4d79 /docs/quick_tutorial/scaffolds/development.ini
parentb00c4e46cafbaefa32288480477005caabf88bc9 (diff)
downloadpyramid-558f3e772a1416ebdd9cd8122c0aeac3f0b0d72c.tar.gz
pyramid-558f3e772a1416ebdd9cd8122c0aeac3f0b0d72c.tar.bz2
pyramid-558f3e772a1416ebdd9cd8122c0aeac3f0b0d72c.zip
quick_tutorial/cookiecutters - renamed from scaffolds
- rewrite for use of cookiecutters instead of scaffolds - update source files
Diffstat (limited to 'docs/quick_tutorial/scaffolds/development.ini')
-rw-r--r--docs/quick_tutorial/scaffolds/development.ini59
1 files changed, 0 insertions, 59 deletions
diff --git a/docs/quick_tutorial/scaffolds/development.ini b/docs/quick_tutorial/scaffolds/development.ini
deleted file mode 100644
index 0f562d0e1..000000000
--- a/docs/quick_tutorial/scaffolds/development.ini
+++ /dev/null
@@ -1,59 +0,0 @@
-###
-# app configuration
-# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
-###
-
-[app:main]
-use = egg:scaffolds
-
-pyramid.reload_templates = true
-pyramid.debug_authorization = false
-pyramid.debug_notfound = false
-pyramid.debug_routematch = false
-pyramid.default_locale_name = en
-pyramid.includes =
- pyramid_debugtoolbar
-
-# By default, the toolbar only appears for clients from IP addresses
-# '127.0.0.1' and '::1'.
-# debugtoolbar.hosts = 127.0.0.1 ::1
-
-###
-# wsgi server configuration
-###
-
-[server:main]
-use = egg:waitress#main
-listen = *:6543
-
-###
-# logging configuration
-# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
-###
-
-[loggers]
-keys = root, scaffolds
-
-[handlers]
-keys = console
-
-[formatters]
-keys = generic
-
-[logger_root]
-level = INFO
-handlers = console
-
-[logger_scaffolds]
-level = DEBUG
-handlers =
-qualname = scaffolds
-
-[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