summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/reusable-apps.txt1
-rw-r--r--docs/intro/tutorial01.txt4
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt
index 3041fbe8e9..58069dc10a 100644
--- a/docs/intro/reusable-apps.txt
+++ b/docs/intro/reusable-apps.txt
@@ -61,6 +61,7 @@ After the previous tutorials, our project should look like this::
__init__.py
settings.py
urls.py
+ asgi.py
wsgi.py
polls/
__init__.py
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 2f4c59be18..c6554f3437 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -86,6 +86,7 @@ Let's look at what :djadmin:`startproject` created::
__init__.py
settings.py
urls.py
+ asgi.py
wsgi.py
These files are:
@@ -113,6 +114,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/asgi.py`: An entry-point for ASGI-compatible web servers to
+ serve your project. See :doc:`/howto/deployment/asgi/index` for more details.
+
* :file:`mysite/wsgi.py`: An entry-point for WSGI-compatible web servers to
serve your project. See :doc:`/howto/deployment/wsgi/index` for more details.