up static routes

This commit is contained in:
Tykayn 2025-09-21 16:57:24 +02:00 committed by tykayn
parent 9cca0e4998
commit 1048f4af45
14 changed files with 2959 additions and 1076 deletions

16
test_app_init.py Normal file
View file

@ -0,0 +1,16 @@
#!/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)