summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2011-10-22 04:30:10 +0000
committerCarl Meyer <carl@oddbird.net>2011-10-22 04:30:10 +0000
commit145a77edc999fd5f1a53bc5bfd6b581386950074 (patch)
tree473d45e11854e8c1e97a1a4bb4d6eb55d5edfddd /docs/intro/tutorial01.txt
parentdca81ad58a21ca9621a131c787544176618c27e8 (diff)
Fixed #16360 -- Added WSGI entrypoint to startproject layout, and enabled internal servers (runserver and runfcgi) to use an externally-defined WSGI application. Thanks to Armin Ronacher, Jannis Leidel, Alex Gaynor, ptone, and Jacob Kaplan-Moss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17022 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 40b00413db..8474d9ebb8 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -95,6 +95,7 @@ Let's look at what :djadmin:`startproject` created::
__init__.py
settings.py
urls.py
+ wsgi.py
.. admonition:: Doesn't match what you see?
@@ -129,6 +130,9 @@ These files are:
"table of contents" of your Django-powered site. You can read more about
URLs in :doc:`/topics/http/urls`.
+* :file:`mysite/wsgi.py`: An entry-point for WSGI-compatible webservers to
+ serve your project. See :doc:`/howto/deployment/wsgi/index` for more details.
+
.. _more about packages: http://docs.python.org/tutorial/modules.html#packages
The development server