"""Passenger entry point for the Namecheap cPanel Python application."""

import os
import sys


APP_ROOT = os.path.dirname(os.path.abspath(__file__))
if APP_ROOT not in sys.path:
    sys.path.insert(0, APP_ROOT)

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "horilla.settings")

from horilla.wsgi import application  # noqa: E402,F401
