From 0832d52556477c9420aeda1f868d506b5c6d4206 Mon Sep 17 00:00:00 2001 From: sascha Date: Sat, 27 Dec 2025 11:19:28 +0000 Subject: [PATCH] app/app.py aktualisiert --- app/app.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/app/app.py b/app/app.py index d2b1479..07fed2c 100644 --- a/app/app.py +++ b/app/app.py @@ -7,24 +7,6 @@ from difflib import SequenceMatcher app = Flask(__name__) -print("--- DEBUG START ---") -# Wo bin ich gerade? -cwd = os.getcwd() -print(f"Ich befinde mich im Ordner: {cwd}") - -# Was sehe ich hier? -try: - print(f"Dateien in {cwd}: {os.listdir(cwd)}") -except Exception as e: - print(f"Konnte {cwd} nicht lesen: {e}") - -# Existiert /app? -if os.path.exists('/app'): - print(f"Dateien in /app: {os.listdir('/app')}") -else: - print("Der Ordner /app existiert gar nicht!") - -print("--- DEBUG ENDE ---") # DB Verbindung mit Retry-Logik def get_db_connection():