rename the project

This commit is contained in:
2023-12-23 18:11:30 +01:00
parent f9bf3a566e
commit 4e21347199
9 changed files with 92 additions and 5 deletions

16
transcendence/wsgi.py Normal file
View File

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