up static routes
This commit is contained in:
parent
9cca0e4998
commit
1048f4af45
14 changed files with 2959 additions and 1076 deletions
16
test_app_init.py
Normal file
16
test_app_init.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue