import os
import sys

# Add the project directory to the Python path
sys.path.append('/home/your_cpanel_user/KCT_django_app')
sys.path.append('/home/your_cpanel_user/KCT_django_app/backend')

# Set the settings module
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings')

# Import and expose the WSGI application
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
