""" ASGI config for thrillwiki project. It exposes the ASGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ This module is used for production deployments with ASGI servers like Uvicorn. The settings module defaults to production, but can be overridden via the DJANGO_SETTINGS_MODULE environment variable. """ import os from django.core.asgi import get_asgi_application # Default to production settings for ASGI deployments # This can be overridden by setting DJANGO_SETTINGS_MODULE environment variable os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.django.production") application = get_asgi_application()