diff options
author | Thomas Grainger <tagrain@gmail.com> | 2020-09-29 09:55:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 10:55:06 +0200 |
commit | c1442e1192057a3bf14aecbaa1b713eee139eaff (patch) | |
tree | 544e24df9f211211784a8e33d0d4b7efaf682f46 /docs/howto/deployment | |
parent | 058747b77a3e6710301138b8ab3bc4256077fdfa (diff) | |
download | django-c1442e1192057a3bf14aecbaa1b713eee139eaff.tar.gz |
Updated ASGI uvicorn deployment docs.
Diffstat (limited to 'docs/howto/deployment')
-rw-r--r-- | docs/howto/deployment/asgi/uvicorn.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/deployment/asgi/uvicorn.txt b/docs/howto/deployment/asgi/uvicorn.txt index c42341c778..148edc29ea 100644 --- a/docs/howto/deployment/asgi/uvicorn.txt +++ b/docs/howto/deployment/asgi/uvicorn.txt @@ -12,7 +12,7 @@ Installing Uvicorn You can install Uvicorn with ``pip``:: - python -m pip install uvicorn + python -m pip install uvicorn gunicorn Running Django in Uvicorn ========================= @@ -24,7 +24,7 @@ called (separated by a colon). For a typical Django project, invoking Uvicorn would look like:: - uvicorn myproject.asgi:application + gunicorn myproject.asgi:application -k uvicorn.workers.UvicornWorker This will start one process listening on ``127.0.0.1:8000``. It requires that your project be on the Python path; to ensure that run this command from the |