Testinstanz heisst jetzt Data-Metric-360

Der Docker-Container auf :18123 ist umbenannt (Ansage des Eigentuemers).
Umgestellt sind nur die betriebsrelevanten Verweise:

  testumgebung/aufsetzen.sh    NAME=
  testumgebung/README.md       docker rm -f
  companion-app/vite.config.ts Kommentar am Entwicklungs-Proxy

Die uebrigen ~120 Nennungen in AGENTS.md stehen in Verlaufsabschnitten und
bleiben, wie sie geschrieben wurden - stattdessen eine bindende Notiz oben in
der Datei, dass "audi_ha_test" in allen aelteren Abschnitten denselben
Container meint. Sie haelt auch fest, dass aufsetzen.sh mit "docker rm -f" auf
diesen Namen beginnt: ein Lauf loescht den Container samt allem, was darin
aufgezeichnet ist.

Geprueft: Portzuordnung 18123 unveraendert, Container startet unter dem neuen
Namen sauber (Audi Dashboard 2026.9.6.9 eingerichtet, kein Traceback), Profil
und Daten unberuehrt.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-07 15:40:32 +02:00
parent e23a462da9
commit db3c870910
4 changed files with 12 additions and 3 deletions
+9
View File
@@ -190,6 +190,15 @@ the linked documents — this file points, it does not duplicate.
> and never treat a single native change as a reason to. What ships without Xcode does not belong in
> that file: app UI travels in the OTA bundle, panel and backend in the integration's self-update.
> **The test instance is called `Data-Metric-360` (binding, renamed by the owner 2026-09-07).**
> It is the Docker container on `:18123` and **the only instance that may ever be touched** — the
> owner's real instance is never worked on (their own hard line, section W). The container was
> called `audi_ha_test` until 2026-09-07; **every section below that says `audi_ha_test` means this
> same container** and is left as written, per this file's convention of not rewriting history. Only
> the operational references were changed: `testumgebung/aufsetzen.sh`, `testumgebung/README.md`,
> `companion-app/vite.config.ts`. Note that `aufsetzen.sh` starts with `docker rm -f` on that name —
> running it destroys the current container and everything recorded in it.
**How this file is loaded:** Claude Code does not read `AGENTS.md` natively; the root `CLAUDE.md`
imports it via `@AGENTS.md` (official recommended pattern). Other agents (Codex, Cursor, Copilot)
read `AGENTS.md` directly. Edit content here, not in `CLAUDE.md`.
+1 -1
View File
@@ -44,7 +44,7 @@ export default defineConfig({
// reicht das serverseitig an die HA-Testinstanz weiter. Sonst blockt HA
// die Anfrage direkt (siehe AGENTS.md: "CORS ist ein echter Zwang fuer
// diese App" - `cors_allowed_origins` wirkt seit HA 2026.8 nicht). Nur
// gegen `audi_ha_test` (:18123) - die echte Instanz wird nie beruehrt.
// gegen `Data-Metric-360` (:18123) - die echte Instanz wird nie beruehrt.
server: {
port: 5173,
proxy: {
+1 -1
View File
@@ -67,7 +67,7 @@ curl -X POST -H "Authorization: Bearer $T" -H "Content-Type: application/json" \
## Aufräumen
```bash
docker rm -f audi_ha_test
docker rm -f Data-Metric-360
```
Die Konfiguration liegt außerhalb des Repos unter dem im Skript gesetzten
+1 -1
View File
@@ -5,7 +5,7 @@ set -euo pipefail
HIER="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJEKT="$(dirname "$HIER")"
NAME="audi_ha_test"
NAME="Data-Metric-360"
PORT="18123"
ZIEL="${AUDI_TEST_CONFIG:-${TMPDIR:-/tmp}/audi-ha-test-config}"
BASIS="http://localhost:${PORT}"