Coverage for ivatar/wsgi.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-20 23:06 +0000

1# -*- coding: utf-8 -*- 

2""" 

3WSGI config for ivatar project. 

4 

5It exposes the WSGI callable as a module-level variable named ``application``. 

6 

7For more information on this file, see 

8https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/ 

9""" 

10 

11import os 

12 

13from django.core.wsgi import get_wsgi_application 

14 

15os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ivatar.settings") 

16 

17application = get_wsgi_application() # pylint: disable=invalid-name