""" WSGI config for thrillwiki 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/5.0/howto/deployment/wsgi/ This module is used for production deployments with WSGI servers like Gunicorn. The settings module defaults to production, but can be overridden via the DJANGO_SETTINGS_MODULE environment variable. """ import os from django.core.wsgi import get_wsgi_application # Default to production settings for WSGI deployments # This can be overridden by setting DJANGO_SETTINGS_MODULE environment variable os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.django.production") application = get_wsgi_application()