#!/usr/bin/env python3
"""
passenger_wsgi.py - Required for cPanel/Phusion Passenger
This file tells Passenger how to run your Flask application
"""

import sys
import os

# Add current directory to path
sys.path.insert(0, os.getcwd())

# Import Flask app
from dashboard.app import app as application

# Tell Passenger this is a WSGI application
application = application