aboutsummaryrefslogtreecommitdiffstats
path: root/example/wsgi.py
blob: f87faba5edd3e1328aed8c428a2d4453696cda7d (plain)
1
2
3
4
5
6
7
"""WSGI config for example project."""

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

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()