Coverage for ivatar/wsgi.py: 100%
4 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-20 23:06 +0000
« 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.
5It exposes the WSGI callable as a module-level variable named ``application``.
7For more information on this file, see
8https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/
9"""
11import os
13from django.core.wsgi import get_wsgi_application
15os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ivatar.settings")
17application = get_wsgi_application() # pylint: disable=invalid-name