applications renamed to app

This commit is contained in:
Software Shinobi
2026-02-10 03:01:40 -05:00
parent 7c2b1dced1
commit 2218991ff6
10 changed files with 1577 additions and 7 deletions

16
app/wsgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
WSGI config for application 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/3.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings')
application = get_wsgi_application()