Go to file
Lars f5ce1ec941
All checks were successful
Deploy Development / deploy (push) Successful in 52s
Build Test / pytest-backend (push) Successful in 5s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 16s
refactor: Proper type-safe condition handling with Union types
Previous fix used Any type, breaking type safety and only handling
simple cases. This is the correct implementation:

Changes:
1. LogicExpression.operands: List[Any] → List['LogicExpression']
   - Enables recursive/nested expressions
   - Proper type checking for all operator combinations

2. WorkflowNode.condition: Any → Union[LogicExpression, Condition]
   - Type-safe deserialization
   - Supports both UI format (direct LogicExpression) and legacy (Condition wrapper)
   - Pydantic automatically tries LogicExpression first, then Condition

3. Executor: Simplified with isinstance() checks
   - Clean type detection without dict manipulation
   - Fallback for edge cases

This now correctly handles:
- Simple conditions: {operator: "eq", ref: "...", value: "..."}
- Combined: {operator: "and", operands: [...]}
- Nested: {operator: "or", operands: [{operator: "and", ...}, ...]}
- All operators: eq, neq, in, not_in, gt, lt, gte, lte, contains, and, or, not
- Legacy format: {expression: {...}, then_path: "...", else_path: "..."}

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-13 08:45:55 +02:00
.claude feat: Update Gitea issues index and enhance data layer metrics 2026-04-11 22:14:45 +02:00
.gitea/workflows feat(csv-import): Enhance CSV import processing and validation 2026-04-10 15:09:34 +02:00
backend refactor: Proper type-safe condition handling with Union types 2026-04-13 08:45:55 +02:00
docs feat: Update Gitea issues index and enhance data layer metrics 2026-04-11 22:14:45 +02:00
frontend fix: Cursor-Problem beim Frage-ID Editieren 2026-04-12 12:29:52 +02:00
nginx feat: initial commit – Mitai Jinkendo v9a 2026-03-16 13:35:11 +01:00
scripts/gitea feat: Enhance dashboard widget configuration and introduce new widgets 2026-04-07 14:19:45 +02:00
tests cursor_Setup 2026-04-04 14:05:50 +02:00
.env.example cursor_Setup 2026-04-04 14:05:50 +02:00
.gitignore docs: Struktur .claude/docs versionieren, working/, Gitea-Index, Regeln 2026-04-08 13:01:49 +02:00
CLAUDE.md feat: Update placeholder metadata and nutrition metrics 2026-04-11 21:11:05 +02:00
create_issue_no_jq.sh Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
create_metadaten_review_issue.sh Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
docker-compose.dev-env.yml fix: add missing /app/data volume for SQLite migration 2026-03-18 12:11:37 +01:00
docker-compose.dev.yml feat: initial commit – Mitai Jinkendo v9a 2026-03-16 13:35:11 +01:00
docker-compose.yml docker-compose.yml aktualisiert 2026-03-19 08:28:30 +01:00
find-container.sh chore: rollback point before unified prompt system refactoring (Issue #28) 2026-03-25 10:42:18 +01:00
nutrition_cluster_final_check.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
nutrition_cluster_final.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
package-lock.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
package.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
playwright.config.js Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
README.md feat: initial commit – Mitai Jinkendo v9a 2026-03-16 13:35:11 +01:00
registry_export_final.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
registry_export_fixed.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
registry_export_new_data.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
registry_export_part_c_fixed.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
registry_export_part_c.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
registry_export_partb.json Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
SETUP.md feat: initial commit – Mitai Jinkendo v9a 2026-03-16 13:35:11 +01:00
test_activity_registration.py Add tests for Activity Cluster registration and smoke tests for login functionality 2026-04-03 08:22:08 +02:00
test_placeholder_resolution.py neuer Viewport für Admin-Seiten 2026-04-11 11:32:46 +02:00
test-pipeline-api.sh chore: add pipeline system test scripts (Issue #28) 2026-03-25 09:47:58 +01:00
test-pipeline-backend.sh fix: use postgres container for psql commands 2026-03-25 09:54:44 +01:00
test-unified-migration.sh fix: migration 020 SQL syntax - correlated subquery issue 2026-03-25 12:58:02 +01:00

BodyTrack

Körpervermessung & Körperfett Tracker selbst gehostet, PWA-fähig.

Features

  • Umfänge & Caliper-Messungen (4 Methoden) mit Verlauf
  • Abgeleitete Werte: WHR, WHtR, FFMI, Magermasse
  • Verlaufsdiagramme (Gewicht, KF%, Taille, …)
  • KI-Interpretationen via Claude (Anthropic)
  • Fortschrittsfotos mit Galerie
  • PDF & CSV Export
  • PWA installierbar auf iPhone-Homescreen
  • Alle Daten lokal auf deinem Server (SQLite)

Schnellstart

1. Voraussetzungen

# Docker & Docker Compose installieren (Ubuntu)
curl -fsSL https://get.docker.com | sh
sudo usermod -aG docker $USER
# Neu einloggen

2. Projekt klonen / kopieren

mkdir ~/bodytrack && cd ~/bodytrack
# Dateien hierher kopieren

3. API Key setzen

cp .env.example .env
nano .env
# ANTHROPIC_API_KEY=sk-ant-... eintragen

4. Starten

docker compose up -d

App läuft auf: http://DEINE-IP:3000

5. iPhone Als App installieren

  1. Safari öffnen → http://DEINE-IP:3000
  2. Teilen-Button (□↑) → „Zum Home-Bildschirm"
  3. BodyTrack erscheint als App-Icon

6. Von außen erreichbar (optional)

# Tailscale (einfachste Lösung  VPN zu deinem MiniPC)
curl -fsSL https://tailscale.com/install.sh | sh
sudo tailscale up
# Dann: http://TAILSCALE-IP:3000

Updates

docker compose pull
docker compose up -d --build

Backup

# Datenbank & Fotos sichern
docker run --rm -v bodytrack-data:/data -v bodytrack-photos:/photos \
  -v $(pwd):/backup alpine \
  tar czf /backup/bodytrack_backup_$(date +%Y%m%d).tar.gz /data /photos

Konfiguration

Variable Beschreibung Standard
ANTHROPIC_API_KEY Claude API Key (für KI-Analyse)

Ports

Port Dienst
3000 Frontend (Nginx)
8000 Backend API (intern)