mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-24 11:51:08 -05:00
- Introduced a comprehensive Secret Management Guide detailing best practices, secret classification, development setup, production management, rotation procedures, and emergency protocols. - Implemented a client-side performance monitoring script to track various metrics including page load performance, paint metrics, layout shifts, and memory usage. - Enhanced search accessibility with keyboard navigation support for search results, ensuring compliance with WCAG standards and improving user experience.
23 lines
735 B
Python
23 lines
735 B
Python
"""
|
|
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()
|