django-auditlog/sample_project/sample_project/wsgi.py
Youngkwang Yang 7bcc6e2110
Add basic Django sample project structure
- Add Django project configuration (settings, urls, wsgi, asgi)
- Add demo app with basic structure
- Add requirements.txt with Django and auditlog dependencies
- Add management script for running the sample project
2025-07-24 02:18:45 +09:00

16 lines
405 B
Python

"""
WSGI config for sample_project 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/4.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sample_project.settings")
application = get_wsgi_application()