#!/usr/bin/env python3 """ Test script to verify that the application initializes correctly. """ import sys from backend import create_app try: print("Attempting to initialize the application...") app = create_app() print("Application initialized successfully!") sys.exit(0) except Exception as e: print(f"Error initializing application: {e}") sys.exit(1)