Coverage for project/wsgi.py : 0%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2WSGI config for project project.
4It exposes the WSGI callable as a module-level variable named ``application``.
6For more information on this file, see
7https://docs.djangoproject.com/en/3.0/howto/deployment/wsgi/
8"""
10import os
12from django.core.wsgi import get_wsgi_application
14os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings')
16application = get_wsgi_application()