feat(search): refresh global search UI and align qa/docs updates

This commit is contained in:
2026-04-02 10:49:35 +02:00
parent 5699bc6c5b
commit 5d07236758
35 changed files with 504 additions and 213 deletions

View File

@@ -1,6 +1,6 @@
# Docker lokal
Letzte Aktualisierung: 2026-03-06
Letzte Aktualisierung: 2026-04-01
## Ziel
@@ -11,7 +11,7 @@ Diese Anleitung bringt die Anwendung lokal schnell und stabil zum Laufen.
- Docker Desktop (oder Docker Engine + Compose)
- Port `8080` (App) und `8081` (phpMyAdmin) sind frei
## Start in 4 Schritten
## Start in 5 Schritten
1. ENV-Datei anlegen:
@@ -19,17 +19,23 @@ Diese Anleitung bringt die Anwendung lokal schnell und stabil zum Laufen.
cp .env.example .env
```
2. Container bauen und starten:
2. Config-Template fuer den App-Bootstrap anlegen:
```bash
cp config/config.php.example config/config.php
```
3. Container bauen und starten:
```bash
docker compose up --build -d
```
3. Anwendung öffnen:
4. Anwendung öffnen:
- App: `http://localhost:8080`
- phpMyAdmin: `http://localhost:8081`
4. Logs prüfen (optional):
5. Logs prüfen (optional):
```bash
docker compose logs -f nginx php