From 5401179e3137fa2f92ef527625e8955a9474df0f Mon Sep 17 00:00:00 2001
From: SusanTan
Date: Sat, 6 Jul 2013 19:43:42 -0700
Subject: [PATCH] Fixed #18261 Clarified outer and inner directory in
tutorial1.txt
---
docs/intro/tutorial01.txt | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 6e5988b..6d5ec46 100644
a
|
b
|
These files are:
|
101 | 101 | |
102 | 102 | * The outer :file:`mysite/` directory is just a container for your |
103 | 103 | project. Its name doesn't matter to Django; you can rename it to anything |
104 | | you like. |
| 104 | you like. This outer directory can also be referred to as the "project root", "workspace", or "container". |
105 | 105 | |
106 | 106 | * :file:`manage.py`: A command-line utility that lets you interact with this |
107 | 107 | Django project in various ways. You can read all the details about |
108 | | :file:`manage.py` in :doc:`/ref/django-admin`. |
| 108 | :file:`manage.py` in :doc:`/ref/django-admin`. In general, most command lines |
| 109 | will be run in the directory containing manage.py. |
109 | 110 | |
110 | | * The inner :file:`mysite/` directory is the actual Python package for your |
111 | | project. Its name is the Python package name you'll need to use to import |
112 | | anything inside it (e.g. ``import mysite.settings``). |
| 111 | * The inner :file:`mysite/` directory, also known as the project module, is the |
| 112 | actual Python package for your project. Its name is the Python package name you'll need to use to import anything inside it (e.g. ``import mysite.settings``). |
113 | 113 | |
114 | 114 | * :file:`mysite/__init__.py`: An empty file that tells Python that this |
115 | 115 | directory should be considered a Python package. (Read `more about |