mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	These sections are being referred to already from other locations. Having multiple references to the same location from the ToC is ambiguous, and causes errors in the EPUB build.
		
			
				
	
	
		
			23 lines
		
	
	
		
			703 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			703 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ================
 | |
| Deploying Django
 | |
| ================
 | |
| 
 | |
| Django is full of shortcuts to make Web developers' lives easier, but all
 | |
| those tools are of no use if you can't easily deploy your sites. Since Django's
 | |
| inception, ease of deployment has been a major goal.
 | |
| 
 | |
| 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.
 | |
| 
 | |
| .. toctree::
 | |
|    :maxdepth: 2
 | |
| 
 | |
|    wsgi/index
 | |
|    asgi/index
 | |
|    checklist
 |