feat: Update README.md handling and add reminder to read documentation in output
This commit is contained in:
@@ -41,15 +41,10 @@ def print_subsection(title: str):
|
||||
|
||||
|
||||
def read_readme():
|
||||
"""Liest und gibt den README.md Inhalt aus."""
|
||||
print_section("README.md - Projektdokumentation", "=")
|
||||
|
||||
if README_PATH.exists():
|
||||
with open(README_PATH, 'r', encoding='utf-8') as f:
|
||||
content = f.read()
|
||||
print(content)
|
||||
else:
|
||||
print("⚠️ README.md nicht gefunden!")
|
||||
"""Hinweis auf README.md - wird nicht direkt ausgegeben."""
|
||||
# README.md wird nicht ausgegeben - zu lang für direkte Ausgabe
|
||||
# Hinweis erfolgt am Ende des Scripts
|
||||
pass
|
||||
|
||||
|
||||
def analyze_entities():
|
||||
@@ -474,6 +469,20 @@ def main():
|
||||
print_section("ANALYSE ABGESCHLOSSEN", "=")
|
||||
print("\n✅ Die KI hat jetzt einen vollständigen Überblick über das Projekt!")
|
||||
print(" Alle Entitäten, Beziehungen, Custom Klassen und Frontend-Anpassungen wurden erfasst.\n")
|
||||
|
||||
# Hinweis auf README.md
|
||||
print("=" * 80)
|
||||
print("📖 WICHTIG: Bitte jetzt die README.md lesen!")
|
||||
print("=" * 80)
|
||||
print(f"\n Pfad: {README_PATH}")
|
||||
print(f"\n Die README.md enthält {README_PATH.stat().st_size // 1024}KB detaillierte Projektdokumentation:")
|
||||
print(" • Struktur und Funktionsweise")
|
||||
print(" • Rebuild-Prozess")
|
||||
print(" • Workflow-Verwaltung")
|
||||
print(" • Formula-Scripts und Custom PHP")
|
||||
print(" • Internationalisierung")
|
||||
print(" • Troubleshooting")
|
||||
print("\n 📌 UNBEDINGT LESEN für vollständiges Projektverständnis!\n")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
Reference in New Issue
Block a user