📚 Improved error handling documentation and codebase organization in the frontend application. 🖥️🔍

This commit is contained in:
2025-05-30 20:47:28 +02:00
parent d1a6281577
commit 0d966712a7
5 changed files with 871 additions and 19 deletions

View File

@@ -67,7 +67,7 @@ FLASK_HOST = "0.0.0.0"
FLASK_PORT = 443 # Geändert von 443 auf 8443 (nicht-privilegierter Port)
FLASK_FALLBACK_PORT = 8080 # Geändert von 80 auf 8080 (nicht-privilegierter Port)
FLASK_DEBUG = True
SESSION_LIFETIME = timedelta(days=7)
SESSION_LIFETIME = timedelta(hours=2) # Reduziert von 7 Tagen auf 2 Stunden für bessere Sicherheit
# Upload-Konfiguration
UPLOAD_FOLDER = os.path.join(BASE_DIR, "uploads")