Go to file
Lars a1e4ad66df
All checks were successful
Deploy Development / deploy (push) Successful in 40s
Test Suite / pytest-backend (push) Successful in 44s
Test Suite / lint-backend (push) Successful in 0s
Test Suite / build-frontend (push) Successful in 14s
Test Suite / k6 /health Baseline (push) Successful in 33s
Test Suite / playwright-tests (push) Successful in 1m11s
Implement Quick Evaluation and Quality Scoring for Path QA
- Added `_quick_evaluate_steps_qa` function to streamline path quality assessment without recursive API calls, enhancing performance for slot comparisons.
- Introduced `compute_deterministic_path_quality_score` to provide a heuristic quality score based on gaps and off-topic steps, improving evaluation accuracy.
- Updated `_run_unified_slot_improvement_review` to utilize the new quick evaluation method, optimizing the review process and integrating quality scoring.
- Enhanced `build_path_qa_summary` to include quality score calculations, ensuring comprehensive feedback on path evaluations.
- Refactored related functions for improved clarity and efficiency in handling path quality assessments.
2026-06-13 10:27:07 +02:00
.claude Enhance Slot Difference Annotation and Rematch Suggestion Logic 2026-06-13 07:55:47 +02:00
.cursor/rules feat: enhance access layer governance and visibility checks 2026-05-05 22:09:25 +02:00
.gitea/workflows Update Gitea Workflow to Restrict Test Triggers 2026-06-07 06:50:36 +02:00
backend Implement Quick Evaluation and Quality Scoring for Path QA 2026-06-13 10:27:07 +02:00
docs Enhance Slot Difference Annotation and Rematch Suggestion Logic 2026-06-13 07:55:47 +02:00
frontend Implement Quick Evaluation and Quality Scoring for Path QA 2026-06-13 10:27:07 +02:00
screenshots Refactor code structure for improved readability and maintainability 2026-05-10 21:02:53 +02:00
scripts/load chore(version): update version and changelog for release 0.8.118 2026-05-14 08:53:09 +02:00
test-results chore(version): update version and changelog for release 0.8.125 2026-05-14 12:48:33 +02:00
tests Update Version and Enhance Club Creation Request Management 2026-06-07 07:31:05 +02:00
.env.example Implement Club Feature Enforcement Logic and Update Versioning 2026-06-07 15:47:49 +02:00
.gitignore feat: Initial Shinkan setup 2026-04-21 14:26:12 +02:00
CLAUDE.md Update documentation and enhance planning features in Progression Graph 2026-06-10 07:50:29 +02:00
docker-compose.dev-env.yml Implement Club Feature Enforcement Logic and Update Versioning 2026-06-07 15:47:49 +02:00
docker-compose.yml Implement Club Feature Enforcement Logic and Update Versioning 2026-06-07 15:47:49 +02:00
mitai-jinkendo.code-workspace Implement compliance report and workspace configuration 2026-05-09 22:11:33 +02:00
package-lock.json feat: enhance Playwright configuration and CI workflow for E2E testing 2026-04-29 12:35:30 +02:00
package.json feat: enhance Playwright configuration and CI workflow for E2E testing 2026-04-29 12:35:30 +02:00
playwright.config.js refactor: enhance environment configuration and CI workflow for improved flexibility 2026-04-29 13:33:28 +02:00
README.md feat(media): implement centralized media archive and inline media linking 2026-05-08 10:56:43 +02:00
skills_mapping_clean_utf8.csv feat: add maturity models functionality and update version 2026-04-27 11:32:30 +02:00
skills_mapping_clean.csv feat: add maturity models functionality and update version 2026-04-27 11:32:30 +02:00
test-frontend.js feat: Add Auth system with Login UI 2026-04-21 14:56:16 +02:00
test-login.js Add Playwright tests for Shinkan login page 2026-04-22 06:45:48 +02:00
test-shinkan.js Add Playwright tests for Shinkan login page 2026-04-22 06:45:48 +02:00

Shinkan Jinkendo (真観)

Trainer- und Vereinsplattform für Kampfsport-Trainingsplanung

Teil der Jinkendo-App-Familie (人拳道)

Was ist Shinkan?

Shinkan ist eine moderne Web- und Mobile-App für Kampfsport-Trainer und Vereine. Im Fokus stehen:

  • Übungsverwaltung: Zentrale Übungsbibliothek mit Suche und Filter
  • Trainingsplanung: Effiziente Planung für Gruppen und Termine
  • Kataloge: Fähigkeiten und Trainingsmethoden strukturiert verwalten
  • Standardisierung: Vereinsstandards und wiederverwendbare Vorlagen
  • Freigabe: Gesteuerte Veröffentlichung von Inhalten
  • Medien: Zentrale Medienbibliothek (/media), Archiv mit Lifecycle/Papierkorb, Verknüpfung in Übungen — Norm: .claude/docs/technical/MEDIA_ASSETS_AND_ARCHIVE_SPEC.md · Einstieg: docs/HANDOVER.md

Nicht in Shinkan

  • Kein persönliches Sportler-Tracking (dafür: Mitai Jinkendo)
  • Kein Gürtel-Tracking im MVP
  • Keine individuellen Technik-Fortschritte im MVP

Tech-Stack

  • Frontend: React 18 + Vite + PWA
  • Backend: FastAPI (Python 3.12)
  • Datenbank: PostgreSQL 16
  • Container: Docker + Docker Compose
  • Auth: Token-basiert + bcrypt

Installation (Lokal)

Voraussetzungen

  • Node 20+
  • Python 3.12+
  • PostgreSQL 16
  • Docker + Docker Compose

Setup

# Repository clonen
git clone http://192.168.2.144:3000/Lars/shinkan-jinkendo.git
cd shinkan-jinkendo

# Environment-Variablen
cp .env.example .env
# .env anpassen!

# Backend
cd backend
python -m venv venv
source venv/bin/activate  # Windows: venv\Scripts\activate
pip install -r requirements.txt

# Frontend
cd ../frontend
npm install

# Datenbank
docker compose up -d postgres

# Migrations (automatisch beim Start)
cd ../backend
python main.py

Development

# Backend (Terminal 1)
cd backend
source venv/bin/activate
uvicorn main:app --reload --port 8098

# Frontend (Terminal 2)
cd frontend
npm run dev

Frontend: http://localhost:3098
Backend: http://localhost:8098

Docker (Empfohlen)

# Development
docker compose -f docker-compose.dev-env.yml up --build

# Production
docker compose up --build

Deployment

Production: https://shinkan.jinkendo.de
Development: https://dev.shinkan.jinkendo.de

Auto-Deploy via Gitea Actions:

  • develop → Dev-Umgebung
  • main → Prod-Umgebung

Dokumentation

  • Setup: .claude/docs/working/SHINKAN_PROJECT_SETUP.md
  • Anforderungen: .claude/docs/functional/SHINKAN_REQUIREMENTS.md
  • Architektur: .claude/rules/ARCHITECTURE.md

Lizenz

Proprietary Lars Stommer

Kontakt