Files
michaelschiemer/backups/docs-backup-20250731125004/SETUP.md
Michael Schiemer 55a330b223 Enable Discovery debug logging for production troubleshooting
- Add DISCOVERY_LOG_LEVEL=debug
- Add DISCOVERY_SHOW_PROGRESS=true
- Temporary changes for debugging InitializerProcessor fixes on production
2025-08-11 20:13:26 +02:00

861 B

⚙️ Setup-Anleitung

Diese Datei beschreibt, wie du das Projekt lokal einrichtest und startest.


🔧 Voraussetzungen

  • Docker & Docker Compose
  • Python 3 (für Ansible, optional pipx)
  • Optional: Ansible (für Server-Setup)
  • Optional: PhpStorm oder VS Code

📦 Projektstruktur

.
├── app/              # PHP/NGINX-Anwendung
├── ansible/          # Setup- und Deployment-Playbooks
├── docker-compose.yml
├── .env              # Lokale Konfiguration (nicht versioniert)
├── Makefile          # Komfortbefehle
└── docs/             # Dokumentation

▶️ Lokaler Start

# Container starten
docker compose up --build

# Alternativ mit Makefile
make deploy

🧪 Lokale Tests

  • http://localhost:8080 → NGINX + PHP
  • Logs anzeigen: docker compose logs -f