No Description

achiappa 101cc57e2c Phase 14: hamburger menu groups admin utilities + Sign out 2 weeks ago
assets b027c5d6be Phase 13: Focus filter + Reset in the task list 2 weeks ago
migrations a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 weeks ago
public 101cc57e2c Phase 14: hamburger menu groups admin utilities + Sign out 2 weeks ago
src a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 weeks ago
tests a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 weeks ago
views 101cc57e2c Phase 14: hamburger menu groups admin utilities + Sign out 2 weeks ago
.dockerignore ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 weeks ago
.env.example 83493d0541 Phase 2 hotfix: scalar-safe Request + local admin login 2 weeks ago
.gitignore bfb93fc915 gitignore: exclude .claude/ (Claude Code agent runtime scratch) 2 weeks ago
ACCEPTANCE.md 101cc57e2c Phase 14: hamburger menu groups admin utilities + Sign out 2 weeks ago
Dockerfile ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 weeks ago
HANDOFF.md 15695ab934 HANDOFF.md: add Phase 14 plan (hamburger menu) 2 weeks ago
README.md 58a6b3013e Phase 1: skeleton 2 weeks ago
composer.json 58a6b3013e Phase 1: skeleton 2 weeks ago
docker-compose.yml 58a6b3013e Phase 1: skeleton 2 weeks ago
package-lock.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 weeks ago
package.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 weeks ago
phpunit.xml 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 weeks ago
tailwind.config.js ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 weeks ago

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.