Files

17 lines
384 B
Python
Raw Permalink Normal View History

2019-03-31 15:48:27 +05:30
"""
WSGI config for MacPorts 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/2.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
2020-04-16 20:54:02 +05:30
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings')
2019-03-31 15:48:27 +05:30
application = get_wsgi_application()