Skip to content

Commit

Permalink
Update chapter02.rst
Browse files Browse the repository at this point in the history
add wsgi , django 1.5.x default structure
  • Loading branch information
mariuz committed Sep 17, 2013
1 parent badce2a commit 7fb0a16
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions en/chapter02.rst
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,12 @@ To do this, navigate to the directory where ``django-admin.py`` is installed
The ``startproject`` command creates a directory containing four files::

mysite/
__init__.py
manage.py
settings.py
urls.py
manage.py
mysite/
__init__.py
settings.py
urls.py
wsgi.py

These files are as follows:

Expand All @@ -358,6 +360,7 @@ These files are as follows:
* ``urls.py``: The URLs for this Django project. Think of this as the
"table of contents" of your Django-powered site. At the moment, it's
empty.
* ``wsgi.py``: A simple default WSGI configuration ,which you can tweak as needed for your project

Despite their small size, these files already constitute a working Django
application.
Expand Down

0 comments on commit 7fb0a16

Please sign in to comment.