import sys
import os

# Add the app directory to the system path
sys.path.insert(0, os.path.dirname(__file__))

# Import and create the Flask app
from app import create_app

application = create_app()
