feat(deploy): TrueNAS Custom-App + Auto-Deploy, plus aufgelaufene Arbeit
Some checks failed
CI / Backend Tests (.NET) (push) Successful in 1m11s
CI / Frontend Tests (Node/Vite) (push) Failing after 4m59s
CI / Docker Build & Push (push) Has been skipped
CI / Deploy auf TrueNAS (Custom App) (push) Has been skipped

Deployment:
- custom-app.compose.yaml: self-contained Compose fuer TrueNAS "Custom App"
  (absolute Host-Bind-Pfade, postgres:18, pull_policy always, Port 8090)
- scripts/truenas-deploy.sh: Host-Skript create/redeploy via midclt (App
  bleibt unter Apps sichtbar) inkl. Image-Pull + Health-Check
- ci.yml Deploy-Job: laeuft auf ubuntu-latest-Runner, kopiert Deploy-Dateien
  per SSH auf den NAS-Host und triggert truenas-deploy.sh (statt runs-on goldeye)
- compose.yaml/.env.example: postgres:18 (Locale-Match zur Quell-DB), Port 8090
- .gitignore: .agents/, tools/rag/, deploy/truenas/.env (Secrets/Scratch)

Aufgelaufene Feature-Arbeit (verified/Freeze, Migrationen, Import-Triage):
- GerbilOverride/VerifiedGerbil-Endpoints + GerbilSnapshotService + Tests
- EF-Migrationen (ShowInChronicle, Stillborn, BirthOrder, ManualFlag, DSGVO)
- Frontend VerifizierteTierePage + verified-API + e2e-Spec
- diverse Import-/Triage-Skripte und -Tests

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-19 09:19:11 +02:00
parent 84365bba7f
commit 45b8533f18
93 changed files with 20477 additions and 432 deletions

View File

@@ -274,6 +274,26 @@ check("FIX-4: no artifact -> geno unchanged",
check("FIX-4: no artifact -> no spurious death",
death5 == "")
# --- FIX (ab8fdb0b): leading death-marker right after DOB must not leak into geno ---
# bare "/+," (Mamono) — death without date
_, _, geno_m = e.parse_detail("Mamono,*02.08.2020/+, Aa C- D- Ee gg PP spsp")
check("FIX-ab8fdb0b: bare '/+,' stripped from geno (Mamono)",
geno_m == "Aa C- D- Ee gg PP spsp")
# "/+<Textmonth>'<year>" (Talula) — text-month death marker
_, _, geno_t = e.parse_detail("Talula,*01.01.2015/+April'2017, aa C- DD ee GG PP spsp")
check("FIX-ab8fdb0b: '/+Textmonth'year' stripped from geno (Talula)",
geno_t == "aa C- DD ee GG PP spsp")
# leading "+<numeric date>" (Fegur) — death date captured, geno clean
dob_f, death_f, geno_f = e.parse_detail("Fegur,*01.01.2016+09.07.2017, aa CC DD ee GG PP spsp")
check("FIX-ab8fdb0b: leading '+date' stripped from geno (Fegur)",
geno_f == "aa CC DD ee GG PP spsp")
check("FIX-ab8fdb0b: leading '+date' still captured as death (Fegur)",
death_f == "09.07.2017")
# "/+ ," (Flippi) — death marker with trailing comma, no date
_, _, geno_fl = e.parse_detail("Flippi,*01.01.2016/+ , aa CC DD ee GG PP spsp")
check("FIX-ab8fdb0b: '/+ ,' stripped from geno (Flippi)",
geno_fl == "aa CC DD ee GG PP spsp")
# --- name-bleed guard (a parent name is not a Farbschlag) ---
check("v.d. name rejected", e.looks_like_animal_name("Tennessee von den Kleinen Chaoten"))
check("gen.+v.d. name rejected", e.looks_like_animal_name("Victoria Welby gen. Welby v.d. Kleinen Chaoten"))