Go to file
Lars ba04e0c0b6
All checks were successful
Deploy Development / deploy (push) Successful in 55s
Build Test / pytest-backend (push) Successful in 4s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 15s
fix: Add extra='forbid' to Condition for proper Union resolution
Critical fix: Without extra='forbid', Pydantic accepted UI format
{operator: "and", operands: [...]} as valid Condition by ignoring
unknown fields, resulting in Condition(expression=None).

With extra='forbid':
- Condition rejects unknown fields → fails
- Union tries next type → LogicExpression → success

Test Results (9/9 passed):
- Simple comparisons (eq, neq, gt, lt, in) 
- AND/OR combinations 
- Deep nesting (3+ levels) 
- NOT operator 
- All operators (eq, neq, in, not_in, gt, lt, gte, lte, and, or, not) 
- Legacy format (Condition wrapper) 
- Complex real-world scenarios 

Added comprehensive test suite in:
- test_condition_parsing.py (9 test cases)
- test_condition_union.py (Union resolution verification)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-13 09:01:53 +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 fix: Add extra='forbid' to Condition for proper Union resolution 2026-04-13 09:01:53 +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_condition_parsing.py fix: Add extra='forbid' to Condition for proper Union resolution 2026-04-13 09:01:53 +02:00
test_condition_union.py fix: Add extra='forbid' to Condition for proper Union resolution 2026-04-13 09:01:53 +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)