Files
zod-backend/zod_bank/wsgi.py
2023-06-27 17:27:19 +05:30

17 lines
393 B
Python

"""
WSGI config for ZOD_Bank 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/3.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'zod_bank.settings')
application = get_wsgi_application()