django: create project/app

This commit is contained in:
Charlotte Gaskell 2025-12-23 17:37:20 +00:00
parent 1d0ef191c6
commit 30fb85eeb8
Signed by: charlotte
GPG key ID: 8B93BA001088A340
13 changed files with 202 additions and 0 deletions

15
itpspapi/wsgi.py Normal file
View file

@ -0,0 +1,15 @@
"""WSGI config for itpspapi 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", "itpspapi.settings")
application = get_wsgi_application()