설명 없음

achiappa 815e2327cf HANDOFF.md: note 5-dot Arbeitstage indicator follow-up 2 주 전
assets ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 주 전
migrations a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 주 전
public a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 주 전
src a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 주 전
tests a6345821bf Phase 12: per-week weekday selection (Mo–Fr) drives Arbeitstage 2 주 전
views 1aca417e5e Sprint view Arbeitstage: 5-dot weekday indicator instead of a number 2 주 전
.dockerignore ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 주 전
.env.example 83493d0541 Phase 2 hotfix: scalar-safe Request + local admin login 2 주 전
.gitignore ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 주 전
ACCEPTANCE.md 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 주 전
Dockerfile ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 주 전
HANDOFF.md 815e2327cf HANDOFF.md: note 5-dot Arbeitstage indicator follow-up 2 주 전
README.md 58a6b3013e Phase 1: skeleton 2 주 전
composer.json 58a6b3013e Phase 1: skeleton 2 주 전
docker-compose.yml 58a6b3013e Phase 1: skeleton 2 주 전
package-lock.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 주 전
package.json ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 주 전
phpunit.xml 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 주 전
tailwind.config.js ab9430b0cc Phase 11: vendor Tailwind + drop inline onclick + tighten CSP 2 주 전

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.