summaryrefslogtreecommitdiff
path: root/docs/narr/startup.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2017-03-31 01:49:42 -0500
committerMichael Merickel <michael@merickel.org>2017-03-31 21:23:05 -0500
commitf454b80b0f6e6442fa27e48b7e1e38c5a7cbef03 (patch)
tree871afcd2183553c2d7f9fb742e9f1772890026bc /docs/narr/startup.rst
parentfa8a9dcb11a7e2ec81fa041fd0292d7ce8e2138a (diff)
downloadpyramid-f454b80b0f6e6442fa27e48b7e1e38c5a7cbef03.tar.gz
pyramid-f454b80b0f6e6442fa27e48b7e1e38c5a7cbef03.tar.bz2
pyramid-f454b80b0f6e6442fa27e48b7e1e38c5a7cbef03.zip
add some simple notes about plaster in the narrative docs
Diffstat (limited to 'docs/narr/startup.rst')
-rw-r--r--docs/narr/startup.rst9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst
index cf4612602..29a75cba2 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -38,7 +38,14 @@ Here's a high-level time-ordered overview of what happens when you press
begin to run and serve an application using the information contained
within the ``development.ini`` file.
-#. The framework finds a section named either ``[app:main]``,
+#. ``pserve`` passes the ``development.ini`` path to :term:`plaster` which
+ finds an available configuration loader that recognizes the ``ini`` format.
+
+#. :term:`plaster` finds the ``plaster_pastedeploy`` library which binds
+ the :term:`PasteDeploy` library and returns a parser that can understand
+ the format.
+
+#. The :term:`PasteDeploy` finds a section named either ``[app:main]``,
``[pipeline:main]``, or ``[composite:main]`` in the ``.ini`` file. This
section represents the configuration of a :term:`WSGI` application that will
be served. If you're using a simple application (e.g., ``[app:main]``), the