Žiadny popis

achiappa a30cb0b3df HANDOFF.md: note buildTaskRow data-col hotfix on Phase 13 2 týždňov pred
assets b027c5d6be Phase 13: Focus filter + Reset in the task list 2 týždňov pred
migrations a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 týždňov pred
public 23ab365f1e Fix: stamp data-col on JS-built task row cells 2 týždňov pred
src a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 týždňov pred
tests a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 týždňov pred
views b027c5d6be Phase 13: Focus filter + Reset in the task list 2 týždňov pred
.dockerignore ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 týždňov pred
.env.example 83493d0541 Phase 2 hotfix: scalar-safe Request + local admin login 2 týždňov pred
.gitignore ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 týždňov pred
ACCEPTANCE.md b027c5d6be Phase 13: Focus filter + Reset in the task list 2 týždňov pred
Dockerfile ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 týždňov pred
HANDOFF.md a30cb0b3df HANDOFF.md: note buildTaskRow data-col hotfix on Phase 13 2 týždňov pred
README.md 58a6b3013e Phase 1: skeleton 2 týždňov pred
composer.json 58a6b3013e Phase 1: skeleton 2 týždňov pred
docker-compose.yml 58a6b3013e Phase 1: skeleton 2 týždňov pred
package-lock.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 týždňov pred
package.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 týždňov pred
phpunit.xml 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 týždňov pred
tailwind.config.js ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 týždňov pred

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.