🔧 Aktualisiert: IHK_Projektdokumentation/Gamma_AI_Präsentations_Prompt.md und verwandte Dateien zur Verbesserung der Dokumentation und Klarheit. 📚

This commit is contained in:
2025-06-10 13:43:11 +02:00
parent b2174224ec
commit b1bcb12e3d
4 changed files with 928 additions and 17 deletions

View File

@ -107,43 +107,82 @@ python app.py --debug
```
backend/
├── app.py # Hauptanwendung mit HTTPS-Support
├── app.py # Hauptanwendung mit Development-Support
├── app_production.py # Produktions-Anwendung mit HTTPS-Support
├── models.py # Datenbankmodelle
├── setup.sh # Konsolidiertes Setup-Skript
├── requirements.txt # Python-Abhängigkeiten
├── package.json # Node.js-Abhängigkeiten
├── README.md # Diese Datei
├── CLAUDE.md # Claude-Entwicklungsdokumentation
├──
├── systemd/ # Systemd-Service-Dateien
├── setup/ # 🔧 Setup & Installation
│ ├── setup_https_only.sh # HTTPS-Setup-Skript
│ ├── setup_tapo_outlets.py # Smart-Plug-Konfiguration
│ └── create_test_tapo_printers.py # Test-Drucker-Setup
├──
├── ssl/ # 🔒 SSL & Sicherheit
│ ├── RASPBERRY_PI_SSL_FIX.md # SSL-Konfiguration für Raspberry Pi
│ ├── QUICK_SSL_FIX.md # Schnelle SSL-Fixes
│ ├── fix_ssl_browser.py # Browser-SSL-Korrekturen
│ └── ssl_fix.py # SSL-Fehlerbehebung
├──
├── debug/ # 🐛 Debug & Entwicklung
│ └── debug_admin.py # Admin-Debug-Tools
├──
├── diagrams/ # 📊 Architektur-Diagramme
│ ├── netzwerkdiagramm.svg # Netzwerk-Architektur (SVG)
│ └── netzwerkdiagramm.mmd # Mermaid-Diagramm-Quelle
├──
├── docs/ # 📚 Dokumentation
│ ├── COMMON_ERRORS.md # Häufige Fehler & Lösungen
│ ├── PRODUCTION_HTTPS_SETUP.md # Produktions-HTTPS-Setup
│ ├── EINFACHE_ANLEITUNG.md # Einfache Installationsanleitung
│ ├── SETUP_IMPROVEMENTS.md # Setup-Verbesserungen
│ ├── CREDENTIALS_INTEGRATION.md # Anmeldedaten-Integration
│ ├── SETUP_README.md # Setup-Dokumentation
│ ├── TAPO_CONTROL.md # Smart-Plug-Steuerung
│ ├── MYP_BENUTZERHANDBUCH.md # Benutzerhandbuch
│ ├── MYP_SYSTEMDOKUMENTATION.md # Systemdokumentation
│ └── RASPBERRY_PI_PERFORMANCE.md # Performance-Optimierung
├──
├── scripts/ # 🔨 Hilfsskripte
│ ├── screenshot_tool.py # Screenshot-Tool
│ ├── test_protocol_generator.py # Testprotokoll-Generator
│ └── quick_unicode_fix.py # Unicode-Fixes
├──
├── systemd/ # ⚙️ Systemd-Service-Dateien
│ ├── myp-https.service # HTTPS-Backend-Service
│ ├── myp-kiosk.service # Kiosk-Browser-Service
│ ├── kiosk-watchdog.service # Überwachungsservice
│ └── kiosk-watchdog-python.service # Python-Watchdog
├──
├── blueprints/ # Flask-Blueprints
├── blueprints/ # 🌐 Flask-Blueprints
│ ├── auth.py # Authentifizierung
│ ├── users.py # Benutzerverwaltung
│ ├── printers.py # Druckerverwaltung
│ ├── jobs.py # Job-Management
│ └── guest.py # Gast-Anfragen
├──
├── config/ # Konfigurationsdateien
├── config/ # ⚙️ Konfigurationsdateien
│ └── settings.py # Hauptkonfiguration
├──
├── utils/ # Hilfsfunktionen
├── utils/ # 🛠️ Hilfsfunktionen
│ ├── ssl_config.py # SSL-Zertifikat-Management
│ ├── logging_config.py # Logging-Konfiguration
│ ├── queue_manager.py # Job-Warteschlange
│ └── printer_monitor.py # Drucker-Überwachung
├──
├── static/ # Statische Dateien
├── static/ # 🎨 Statische Dateien
│ ├── css/ # Stylesheets
│ ├── js/ # JavaScript
│ └── icons/ # Icons und Bilder
├──
├── templates/ # Jinja2-Templates
├── docs/ # Dokumentation
├── logs/ # Log-Dateien
── uploads/ # Hochgeladene Dateien
├── templates/ # 📄 Jinja2-Templates
├── database/ # 💾 Datenbank-Dateien
├── logs/ # 📝 Log-Dateien
── uploads/ # 📤 Hochgeladene Dateien
├── instance/ # 🏠 Instanz-spezifische Dateien
├── certs/ # 🔐 SSL-Zertifikate
└── legacy/ # 📦 Legacy-Code
```
## 🔧 Installation