Temporary backup from J621 porting

This commit is contained in:
2026-08-03 00:31:33 -05:00
parent e8f6f433ff
commit 74e44c19a8
42 changed files with 2048 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""
WSGI config for common 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/6.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'common.settings')
application = get_wsgi_application()