import sys import os # Add the project directory to path sys.path.insert(0, os.path.dirname(__file__)) # FastAPI ASGI app from app.main import app as application