 #!/usr/bin/env python3
import os
import sys
from wsgiref.handlers import CGIHandler

# Project path
project_dir = os.path.dirname(os.path.abspath(__file__))
if project_dir not in sys.path:
    sys.path.insert(0, project_dir)

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "durgesh_tech.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

CGIHandler().run(application)