summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/src/views/development.ini
diff options
context:
space:
mode:
authorPatricio Paez <pp@pp.com.mx>2012-11-19 21:03:46 -0600
committerPatricio Paez <pp@pp.com.mx>2012-11-19 21:03:46 -0600
commitc344e532e27ce078643ec3246002d2703ef85416 (patch)
tree5672d6e705c91f499bfba007bd7a6f64866435ad /docs/tutorials/wiki2/src/views/development.ini
parente2bacf5565b86dd3394996b8b503ea87da479340 (diff)
downloadpyramid-c344e532e27ce078643ec3246002d2703ef85416.tar.gz
pyramid-c344e532e27ce078643ec3246002d2703ef85416.tar.bz2
pyramid-c344e532e27ce078643ec3246002d2703ef85416.zip
Sync some SQL wiki tutorial files with the scaffold
- Files that are not referred to in a literalinclude in the tutorial docs - setup.py appears in literalinclude, but no lines are added or removed so no impact. Fixed docutils order in the requires list.
Diffstat (limited to 'docs/tutorials/wiki2/src/views/development.ini')
-rw-r--r--docs/tutorials/wiki2/src/views/development.ini20
1 files changed, 17 insertions, 3 deletions
diff --git a/docs/tutorials/wiki2/src/views/development.ini b/docs/tutorials/wiki2/src/views/development.ini
index eb2f878c5..a9d53b296 100644
--- a/docs/tutorials/wiki2/src/views/development.ini
+++ b/docs/tutorials/wiki2/src/views/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