Files
kennethreitz 9cc47757a6 django app
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-12-11 06:55:24 -05:00

17 lines
399 B
Python

"""
WSGI config for testproject project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "testproject.settings")
application = get_wsgi_application()