Bez popisu

achiappa 94b2841599 Phase 16: dark-mode toggle + light-mode contrast cleanup před 2 týdny
assets d1dda4f4ab Phase 15: big-screen (beamer) task viewer at /sprints/{id}/present před 2 týdny
migrations a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage před 2 týdny
public 94b2841599 Phase 16: dark-mode toggle + light-mode contrast cleanup před 2 týdny
src d1dda4f4ab Phase 15: big-screen (beamer) task viewer at /sprints/{id}/present před 2 týdny
tests a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage před 2 týdny
views 94b2841599 Phase 16: dark-mode toggle + light-mode contrast cleanup před 2 týdny
.dockerignore ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP před 2 týdny
.env.example 83493d0541 Phase 2 hotfix: scalar-safe Request + local admin login před 2 týdny
.gitignore bfb93fc915 gitignore: exclude .claude/ (Claude Code agent runtime scratch) před 2 týdny
ACCEPTANCE.md 94b2841599 Phase 16: dark-mode toggle + light-mode contrast cleanup před 2 týdny
Dockerfile ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP před 2 týdny
HANDOFF.md 0d7124a740 HANDOFF.md: add Phase 16 plan (dark-mode toggle + light-mode contrast) před 2 týdny
README.md 58a6b3013e Phase 1: skeleton před 2 týdny
composer.json 58a6b3013e Phase 1: skeleton před 2 týdny
docker-compose.yml 58a6b3013e Phase 1: skeleton před 2 týdny
package-lock.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP před 2 týdny
package.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP před 2 týdny
phpunit.xml 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit před 2 týdny
tailwind.config.js 94b2841599 Phase 16: dark-mode toggle + light-mode contrast cleanup před 2 týdny

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.