252697b842
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.
8 lines
213 B
Python
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()
|