diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-12-05 08:38:39 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-12-05 08:40:19 +0100 |
| commit | 6ede5a3cb7ae92d6d8fdbd71805fb4742c672dd9 (patch) | |
| tree | 080c47024c01a417233ff86908d05fe1b77488a5 /docs/intro/tutorial01.txt | |
| parent | 7263c7710cfb00628dbefb8f644e8c2c21d94c32 (diff) | |
[3.0.x] Fixed #31062 -- Doc'd asgi.py in tutorials and project templates.
Backport of 3930ec1bf275d17f1c36cd38b38114177b1d1565 from master
Diffstat (limited to 'docs/intro/tutorial01.txt')
| -rw-r--r-- | docs/intro/tutorial01.txt | 4 |
1 files changed, 4 insertions, 0 deletions
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. |
