import sys from pathlib import Path # Add src directory to Python path src_path = Path(__file__).parent / "src" sys.path.append(str(src_path)) # Import and run the actual app from app import main main()