First push

This commit is contained in:
Jack
2023-09-27 14:42:25 +01:00
parent 95468bd21a
commit 0126ff3a1d
44 changed files with 2965 additions and 0 deletions

View File

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