website/conservancy/wsgi.py

13 lines
293 B
Python
Raw Normal View History

"""WSGI config for project project.
It exposes the WSGI callable as a module-level variable named ``application``.
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'conservancy.settings')
application = get_wsgi_application()