summaryrefslogtreecommitdiff
path: root/docs/narr/myproject/testing.ini
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2020-01-08 02:00:20 -0800
committerSteve Piercy <web@stevepiercy.com>2020-01-08 02:00:20 -0800
commit3630b1ebd981a994b83689a6becb9922f1b20f0a (patch)
tree7fe2c695957730bc5251b70761ea3c54c5667b9d /docs/narr/myproject/testing.ini
parent14403a3f6d7cb870aefafa6bfa8999f86aa29c86 (diff)
downloadpyramid-3630b1ebd981a994b83689a6becb9922f1b20f0a.tar.gz
pyramid-3630b1ebd981a994b83689a6becb9922f1b20f0a.tar.bz2
pyramid-3630b1ebd981a994b83689a6becb9922f1b20f0a.zip
sync cookiecutter to starter project `myproject`
Diffstat (limited to 'docs/narr/myproject/testing.ini')
-rw-r--r--docs/narr/myproject/testing.ini53
1 files changed, 53 insertions, 0 deletions
diff --git a/docs/narr/myproject/testing.ini b/docs/narr/myproject/testing.ini
new file mode 100644
index 000000000..f2ef86805
--- /dev/null
+++ b/docs/narr/myproject/testing.ini
@@ -0,0 +1,53 @@
+###
+# app configuration
+# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
+###
+
+[app:main]
+use = egg:myproject
+
+pyramid.reload_templates = false
+pyramid.debug_authorization = false
+pyramid.debug_notfound = false
+pyramid.debug_routematch = false
+pyramid.default_locale_name = en
+
+###
+# wsgi server configuration
+###
+
+[server:main]
+use = egg:waitress#main
+listen = localhost:6543
+
+###
+# logging configuration
+# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
+###
+
+[loggers]
+keys = root, myproject
+
+[handlers]
+keys = console
+
+[formatters]
+keys = generic
+
+[logger_root]
+level = INFO
+handlers = console
+
+[logger_myproject]
+level = DEBUG
+handlers =
+qualname = myproject
+
+[handler_console]
+class = StreamHandler
+args = (sys.stderr,)
+level = NOTSET
+formatter = generic
+
+[formatter_generic]
+format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s