Browse Source

Document Werkzeug's run_simple for dispatch, #225.

pull/255/merge
Ron DuPlain 14 years ago
parent
commit
8e928a2fcb
  1. 2
      docs/deploying/index.rst
  2. 16
      docs/patterns/appdispatch.rst

2
docs/deploying/index.rst

@ -1,3 +1,5 @@
.. _deployment:
Deployment Options Deployment Options
================== ==================

16
docs/patterns/appdispatch.rst

@ -15,6 +15,22 @@ The fundamental difference from the :ref:`module approach
different Flask applications that are entirely isolated from each other. different Flask applications that are entirely isolated from each other.
They run different configurations and are dispatched on the WSGI level. They run different configurations and are dispatched on the WSGI level.
Working with this Document
--------------------------
Each of the techniques and examples below results in an ``application`` object
that can be run with any WSGI server. For production, see :ref:`deployment`.
For development, Werkzeug provides a builtin server for development available
at :func:`werkzeug.serving.run_simple`::
from werkzeug.serving import run_simple
run_simple('localhost', 5000, application, use_reloader=True)
Note that :func:`run_simple <werkzeug.serving.run_simple>` is not intended for
use in production. Use a :ref:`full-blown WSGI server <deployment>`.
Combining Applications Combining Applications
---------------------- ----------------------

Loading…
Cancel
Save