2016-01-03 18:56:22 +08:00
|
|
|
================
|
2008-08-24 06:25:40 +08:00
|
|
|
Deploying Django
|
|
|
|
================
|
|
|
|
|
2019-04-12 21:15:18 +08:00
|
|
|
Django is full of shortcuts to make Web developers' lives easier, but all
|
2008-08-24 06:25:40 +08:00
|
|
|
those tools are of no use if you can't easily deploy your sites. Since Django's
|
2015-06-05 16:36:42 +08:00
|
|
|
inception, ease of deployment has been a major goal.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
2019-04-12 21:15:18 +08:00
|
|
|
This section contains guides to the two main ways to deploy Django. WSGI is the
|
|
|
|
main Python standard for communicating between Web servers and applications,
|
|
|
|
but it only supports synchronous code.
|
|
|
|
|
|
|
|
ASGI is the new, asynchronous-friendly standard that will allow your Django
|
|
|
|
site to use asynchronous Python features, and asynchronous Django features as
|
|
|
|
they are developed.
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
2010-08-20 03:27:44 +08:00
|
|
|
|
2011-10-22 12:30:10 +08:00
|
|
|
wsgi/index
|
2019-04-12 21:15:18 +08:00
|
|
|
asgi/index
|
2013-03-18 01:21:05 +08:00
|
|
|
checklist
|