django-refunds/refunds/wsgi.py

19 lines
482 B
Python
Raw Normal View History

2016-06-03 17:30:41 +02:00
"""
WSGI config for refunds 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
2018-01-22 21:25:42 +01:00
from whitenoise.django import DjangoWhiteNoise
2016-06-03 17:30:41 +02:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "refunds.settings")
application = get_wsgi_application()
2018-01-22 21:25:42 +01:00
application = DjangoWhiteNoise(application)