Keine Beschreibung

achiappa 7c298d3844 Fix: buildTaskRow owner dropdown was empty until a page refresh vor 2 Wochen
assets d1dda4f4ab Phase 15: big-screen (beamer) task viewer at /sprints/{id}/present vor 2 Wochen
migrations a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage vor 2 Wochen
public 7c298d3844 Fix: buildTaskRow owner dropdown was empty until a page refresh vor 2 Wochen
src d1dda4f4ab Phase 15: big-screen (beamer) task viewer at /sprints/{id}/present vor 2 Wochen
tests a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage vor 2 Wochen
views d1dda4f4ab Phase 15: big-screen (beamer) task viewer at /sprints/{id}/present vor 2 Wochen
.dockerignore ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP vor 2 Wochen
.env.example 83493d0541 Phase 2 hotfix: scalar-safe Request + local admin login vor 2 Wochen
.gitignore bfb93fc915 gitignore: exclude .claude/ (Claude Code agent runtime scratch) vor 2 Wochen
ACCEPTANCE.md d1dda4f4ab Phase 15: big-screen (beamer) task viewer at /sprints/{id}/present vor 2 Wochen
Dockerfile ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP vor 2 Wochen
HANDOFF.md c70e4424b4 HANDOFF.md: mark Phase 15 shipped vor 2 Wochen
README.md 58a6b3013e Phase 1: skeleton vor 2 Wochen
composer.json 58a6b3013e Phase 1: skeleton vor 2 Wochen
docker-compose.yml 58a6b3013e Phase 1: skeleton vor 2 Wochen
package-lock.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP vor 2 Wochen
package.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP vor 2 Wochen
phpunit.xml 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit vor 2 Wochen
tailwind.config.js ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP vor 2 Wochen

README.md

Sprint Planner

Web replacement for the Excel-based sprint planning tool.

Stack

  • PHP 8.3 + Apache (Docker, single container)
  • SQLite (file on mounted volume)
  • Server-rendered PHP templates + Tailwind CSS + jQuery / jQuery UI (all via CDN)
  • Microsoft Entra ID (OpenID Connect) for auth

Quick start

cp .env.example .env
# fill in ENTRA_TENANT_ID, ENTRA_CLIENT_ID, ENTRA_CLIENT_SECRET, SESSION_SECRET
docker compose up --build

Then open http://localhost:8080.

The SQLite database lives at ./data/app.sqlite (mounted into the container at /var/www/data/app.sqlite). Migrations run automatically on the first request after container start.

Layout

public/      front controller (index.php) + web root
src/         application code (App\ namespace, PSR-4)
views/       PHP templates
migrations/  numbered .sql files applied by Migrator
assets/      static JS / CSS
data/        SQLite + sessions (volume-mounted; gitignored)

Build phases

This repo is built incrementally. See the spec for phase definitions. Current phase: Phase 1 — skeleton.