init DRF + sde models

This commit is contained in:
Tom Villette
2023-10-26 18:05:30 +02:00
parent 2a454dcd00
commit d4c09332b5
24 changed files with 500 additions and 27 deletions

16
mabras/wsgi.py Normal file
View File

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