import os
import sys

# Add the project directory to the Python path
sys.path.insert(0, '/home/lashkari/public_html/dmis_mya/dmis')

# Set the Django settings module
os.environ['DJANGO_SETTINGS_MODULE'] = 'dmis.settings'

# Load the WSGI application
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
