2016-01-03 10:56:22 +00:00
|
|
|
================
|
2008-08-23 22:25:40 +00:00
|
|
|
Deploying Django
|
|
|
|
================
|
|
|
|
|
2019-04-12 13:15:18 +00:00
|
|
|
Django is full of shortcuts to make Web developers' lives easier, but all
|
2008-08-23 22:25:40 +00:00
|
|
|
those tools are of no use if you can't easily deploy your sites. Since Django's
|
2015-06-05 08:36:42 +00:00
|
|
|
inception, ease of deployment has been a major goal.
|
2008-08-23 22:25:40 +00:00
|
|
|
|
2019-04-12 13:15:18 +00: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-23 22:25:40 +00:00
|
|
|
.. toctree::
|
2019-09-09 08:02:33 +00:00
|
|
|
:maxdepth: 2
|
2010-08-19 19:27:44 +00:00
|
|
|
|
2011-10-22 04:30:10 +00:00
|
|
|
wsgi/index
|
2019-04-12 13:15:18 +00:00
|
|
|
asgi/index
|
2013-03-17 17:21:05 +00:00
|
|
|
checklist
|