Files
ferglie/shortio/wsgi.py
Fergal Moran 4333677844 Initial commit
2017-05-03 21:31:11 +01:00

17 lines
392 B
Python

"""
WSGI config for shortio 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.11/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "shortio.settings")
application = get_wsgi_application()