1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/0-DEPRECATED-ROLES/pathagar/templates/wsgi.py

11 lines
295 B
Python

"""
WSGI config for pathagar project.
It exposes the WSGI callable as a module-level variable named ``application``.
"""
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pathagar.prod_settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()