"""
passenger_wsgi.py — cPanel Python Selector entry point.

cPanel Passenger looks for `application` in this file as the WSGI callable.
"""

import os
import sys

# Ensure this directory is on sys.path so `app` and `kanban` can be imported
_here = os.path.dirname(os.path.abspath(__file__))
if _here not in sys.path:
    sys.path.insert(0, _here)

from app import app as application  # noqa: E402,F401
