Newer
Older
postorius / example_project / wsgi.py
@Simon Hanna Simon Hanna on 20 May 2016 379 bytes Rename example project
"""
WSGI config for meh 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/1.9/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application

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

application = get_wsgi_application()