# passenger_wsgi.py

import sys
import os

# Add the current directory to the system path so Python can find app.py
sys.path.insert(0, os.path.dirname(__file__))

# Import the Flask application instance as required by Passenger
from app import app as application  # app.py must contain: app = Flask(__name__)
