summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/src/tests/development.ini
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-11-20 22:00:28 -0500
committerChris McDonough <chrism@plope.com>2012-11-20 22:00:28 -0500
commit69883fbb866c4f0970f2cd46a83fe57548dfe059 (patch)
tree5ee4699dc01c43880b461dd2ba24278c2c74562b /docs/tutorials/wiki2/src/tests/development.ini
parent68886507c9e94fefa9e6c28b2b49c4da5b3ef77e (diff)
parent8fcc3212d7bbcf3720824c940b2337f9b4c958fd (diff)
downloadpyramid-69883fbb866c4f0970f2cd46a83fe57548dfe059.tar.gz
pyramid-69883fbb866c4f0970f2cd46a83fe57548dfe059.tar.bz2
pyramid-69883fbb866c4f0970f2cd46a83fe57548dfe059.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/tutorials/wiki2/src/tests/development.ini')
-rw-r--r--docs/tutorials/wiki2/src/tests/development.ini20
1 files changed, 17 insertions, 3 deletions
diff --git a/docs/tutorials/wiki2/src/tests/development.ini b/docs/tutorials/wiki2/src/tests/development.ini
index eb2f878c5..a9d53b296 100644
--- a/docs/tutorials/wiki2/src/tests/development.ini
+++ b/docs/tutorials/wiki2/src/tests/development.ini
@@ -1,3 +1,8 @@
+###
+# app configuration
+# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
+###
+
[app:main]
use = egg:tutorial
@@ -12,12 +17,23 @@ pyramid.includes =
sqlalchemy.url = sqlite:///%(here)s/tutorial.sqlite
+# 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
host = 0.0.0.0
port = 6543
-# Begin logging configuration
+###
+# logging configuration
+# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
+###
[loggers]
keys = root, tutorial, sqlalchemy
@@ -53,5 +69,3 @@ formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
-
-# End logging configuration