symposion_app/pinaxcon/wsgi.py
Joel Addison 252697b842 Update to Django 2.2
Upgrade site and modules to Django 2.2. Remove and replace obsolete
functionality with current equivalents. Update requirements to latest
versions where possible. Remove unused dependencies.
2020-11-22 23:58:14 +10:00

8 lines
213 B
Python

import os
os.environ.setdefault("DEBUG", "0")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pinaxcon.settings")
from django.core.wsgi import get_wsgi_application # noqa
application = get_wsgi_application()