mirror of
				https://github.com/iiab/iiab.git
				synced 2025-03-09 15:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			295 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			295 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """
 | |
| WSGI config for pathagar project.
 | |
| 
 | |
| It exposes the WSGI callable as a module-level variable named ``application``.
 | |
| """
 | |
| 
 | |
| import os
 | |
| os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pathagar.prod_settings")
 | |
| 
 | |
| from django.core.wsgi import get_wsgi_application
 | |
| application = get_wsgi_application()
 |