summaryrefslogtreecommitdiff
path: root/docs/narr/startup.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-12-08 02:43:14 -0800
committerSteve Piercy <web@stevepiercy.com>2015-12-08 02:43:14 -0800
commitbf8014ec3458b46c427706988a8ca26380707cd7 (patch)
treefa1c16cd34397c675e36bfc8887c1cc1059d4404 /docs/narr/startup.rst
parentd4177a51aff1a46d1c2223db6ed7afd99964e8ad (diff)
downloadpyramid-bf8014ec3458b46c427706988a8ca26380707cd7.tar.gz
pyramid-bf8014ec3458b46c427706988a8ca26380707cd7.tar.bz2
pyramid-bf8014ec3458b46c427706988a8ca26380707cd7.zip
update narrative docs and literalinclude source files that use the starter scaffold to reflect its current state
Diffstat (limited to 'docs/narr/startup.rst')
-rw-r--r--docs/narr/startup.rst27
1 files changed, 13 insertions, 14 deletions
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst
index 485f6b181..3e168eaea 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -6,15 +6,15 @@ Startup
When you cause a :app:`Pyramid` application to start up in a console window,
you'll see something much like this show up on the console:
-.. code-block:: text
+.. code-block:: bash
- $ pserve development.ini
- Starting server in PID 16601.
- serving on 0.0.0.0:6543 view at http://127.0.0.1:6543
+ $ $VENV/bin/pserve development.ini
+ Starting server in PID 16305.
+ serving on http://127.0.0.1:6543
This chapter explains what happens between the time you press the "Return" key
on your keyboard after typing ``pserve development.ini`` and the time the line
-``serving on 0.0.0.0:6543 ...`` is output to your console.
+``serving on http://127.0.0.1:6543`` is output to your console.
.. index::
single: startup process
@@ -92,11 +92,11 @@ Here's a high-level time-ordered overview of what happens when you press
In this case, the ``myproject.__init__:main`` function referred to by the
entry point URI ``egg:MyProject`` (see :ref:`MyProject_ini` for more
information about entry point URIs, and how they relate to callables) will
- receive the key/value pairs ``{'pyramid.reload_templates':'true',
- 'pyramid.debug_authorization':'false', 'pyramid.debug_notfound':'false',
- 'pyramid.debug_routematch':'false', 'pyramid.debug_templates':'true',
- 'pyramid.default_locale_name':'en'}``. See :ref:`environment_chapter` for
- the meanings of these keys.
+ receive the key/value pairs ``{pyramid.reload_templates = true,
+ pyramid.debug_authorization = false, pyramid.debug_notfound = false,
+ pyramid.debug_routematch = false, pyramid.default_locale_name = en, and
+ pyramid.includes = pyramid_debugtoolbar}``. See :ref:`environment_chapter`
+ for the meanings of these keys.
#. The ``main`` function first constructs a
:class:`~pyramid.config.Configurator` instance, passing the ``settings``
@@ -131,10 +131,9 @@ Here's a high-level time-ordered overview of what happens when you press
#. ``pserve`` starts the WSGI *server* defined within the ``[server:main]``
section. In our case, this is the Waitress server (``use =
egg:waitress#main``), and it will listen on all interfaces (``host =
- 0.0.0.0``), on port number 6543 (``port = 6543``). The server code itself
- is what prints ``serving on 0.0.0.0:6543 view at http://127.0.0.1:6543``.
- The server serves the application, and the application is running, waiting
- to receive requests.
+ 127.0.0.1``), on port number 6543 (``port = 6543``). The server code itself
+ is what prints ``serving on http://127.0.0.1:6543``. The server serves the
+ application, and the application is running, waiting to receive requests.
.. seealso::
Logging configuration is described in the :ref:`logging_chapter` chapter.