summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-11-23 18:57:26 -0800
committerSteve Piercy <web@stevepiercy.com>2018-11-23 18:57:26 -0800
commitd42b654b1dda5e0e80c25c2cb8b8836ad538d60c (patch)
tree2e5cafe0915ef7fc105819e43f875a0df347be2c /docs
parent4ccf01a091485463bfae1129ed858546b6a93da6 (diff)
downloadpyramid-d42b654b1dda5e0e80c25c2cb8b8836ad538d60c.tar.gz
pyramid-d42b654b1dda5e0e80c25c2cb8b8836ad538d60c.tar.bz2
pyramid-d42b654b1dda5e0e80c25c2cb8b8836ad538d60c.zip
Clean up configuration for development.ini
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials/wiki/basiclayout.rst12
1 files changed, 4 insertions, 8 deletions
diff --git a/docs/tutorials/wiki/basiclayout.rst b/docs/tutorials/wiki/basiclayout.rst
index 3f84f12c3..ab9b7df5c 100644
--- a/docs/tutorials/wiki/basiclayout.rst
+++ b/docs/tutorials/wiki/basiclayout.rst
@@ -256,15 +256,11 @@ Without repeating ourselves, we will point out the differences between this view
Configuration in ``development.ini``
------------------------------------
-The ``development.ini`` (in the ``tutorial`` :term:`project` directory, as
-opposed to the ``tutorial`` :term:`package` directory) looks like this:
+The ``development.ini`` (in the ``tutorial`` :term:`project` directory, as opposed to the ``tutorial`` :term:`package` directory) looks like this:
.. literalinclude:: src/basiclayout/development.ini
:language: ini
-Note the existence of a ``[app:main]`` section which specifies our WSGI
-application. Our ZODB database settings are specified as the
-``zodbconn.uri`` setting within this section. This value, and the other
-values within this section, are passed as ``**settings`` to the ``main``
-function we defined in ``__init__.py`` when the server is started via
-``pserve``.
+Note the existence of a ``[app:main]`` section which specifies our WSGI application.
+Our ZODB database settings are specified as the ``zodbconn.uri`` setting within this section.
+When the server is started via ``pserve``, the values within this section are passed as ``**settings`` to the ``main`` function defined in ``__init__.py``.