import sys
import os

# Add virtualenv
sys.path.insert(0, '/home/xenproductionsco/public_html/hrm.xenproductions.co.in/env/lib/python3.9/site-packages')

# Add your project directory to the sys.path
sys.path.insert(0, '/home/xenproductionsco/public_html/hrm.xenproductions.co.in/hrm')

# Set environment variable for Django settings
os.environ['DJANGO_SETTINGS_MODULE'] = 'hrm.settings'

# Import Django's WSGI application
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
