import sys
import os

# Ensure the app directory is on the Python path
sys.path.insert(0, os.path.dirname(__file__))

# Import the Flask app object as 'application' for cPanel Phusion Passenger WSGI
from app import app as application
