diff options
| author | Chris McDonough <chrism@plope.com> | 2014-01-21 23:22:50 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2014-01-21 23:22:50 -0500 |
| commit | dec681201ec50c261bde022ea09d24f09e3588bd (patch) | |
| tree | b3717a84ca3c3001072ef2e4ab759a4574a7324f /docs/narr/MyProject/development.ini | |
| parent | 5c4318abe647b65869ac6dbb5b57cf1088712061 (diff) | |
| parent | df6065fb1c3724649ac6e75cfcabc273ef6fd0d9 (diff) | |
| download | pyramid-dec681201ec50c261bde022ea09d24f09e3588bd.tar.gz pyramid-dec681201ec50c261bde022ea09d24f09e3588bd.tar.bz2 pyramid-dec681201ec50c261bde022ea09d24f09e3588bd.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/narr/MyProject/development.ini')
| -rw-r--r-- | docs/narr/MyProject/development.ini | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/docs/narr/MyProject/development.ini b/docs/narr/MyProject/development.ini index 84e08c2d0..a9a26e56b 100644 --- a/docs/narr/MyProject/development.ini +++ b/docs/narr/MyProject/development.ini @@ -1,3 +1,8 @@ +### +# app configuration +# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html +### + [app:main] use = egg:MyProject @@ -6,15 +11,26 @@ pyramid.debug_authorization = false pyramid.debug_notfound = false pyramid.debug_routematch = false pyramid.default_locale_name = en -pyramid.includes = +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 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, myproject @@ -42,5 +58,3 @@ formatter = generic [formatter_generic] format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s - -# End logging configuration |
