Files

19 lines
438 B
Python
Raw Permalink Normal View History

2025-04-29 15:43:53 +03:30
"""
WSGI config for Rasaddam_Backend 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/5.2/howto/deployment/wsgi/
"""
import os
2025-05-04 15:35:11 +03:30
import django
2025-04-29 15:43:53 +03:30
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Rasaddam_Backend.settings')
2025-05-04 15:35:11 +03:30
django.setup()
2025-04-29 15:43:53 +03:30
application = get_wsgi_application()