first commit

This commit is contained in:
2025-11-30 00:07:24 +01:00
commit b5e642aecb
78 changed files with 15162 additions and 0 deletions

21
debug_import.py Normal file
View File

@ -0,0 +1,21 @@
import os
print("--- Content of /app/admin_templates.py ---")
try:
with open("/app/admin_templates.py", "r") as f:
print(f.read())
except FileNotFoundError:
print("admin_templates.py not found in /app")
print("-----------------------------------------")
print("Attempting to import oidc_server.py...")
try:
# This will attempt to import admin_templates implicitly
import oidc_server
print("Successfully imported oidc_server.py (and admin_templates.py).")
except SyntaxError as e:
print(f"SyntaxError during import: {e}")
except ImportError as e:
print(f"ImportError during import: {e}")
except Exception as e:
print(f"An unexpected error occurred during import: {e}")