import sys import os # Add the project root to sys.path sys.path.insert(0, os.path.dirname(__file__)) # Import the Flask app object from your interface module # Assuming the file is src/interface/app.py from src.interface.app import app as application # In case Hostinger needs 'app' instead of 'application' app = application