Files
thrillwiki_django_no_react/backend/thrillwiki/wsgi.py
pacnpal edcd8f2076 Add secret management guide, client-side performance monitoring, and search accessibility enhancements
- 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.
2025-12-23 16:41:42 -05:00

23 lines
736 B
Python

"""
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()