Nav apraksta

achiappa 8537fc2d79 Plan Phases 8–11 in HANDOFF.md 2 nedēļas atpakaļ
migrations be193d258f Phase 2: Entra OIDC auth + session + audit log 2 nedēļas atpakaļ
public 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 nedēļas atpakaļ
src 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 nedēļas atpakaļ
tests 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 nedēļas atpakaļ
views 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 nedēļas atpakaļ
.env.example 83493d0541 Phase 2 hotfix: scalar-safe Request + local admin login 2 nedēļas atpakaļ
.gitignore afa9e4f96b Ignore PHPUnit cache directory 2 nedēļas atpakaļ
ACCEPTANCE.md 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 nedēļas atpakaļ
Dockerfile 82ddc984e5 Route all URLs to the front controller via FallbackResource 2 nedēļas atpakaļ
HANDOFF.md 8537fc2d79 Plan Phases 8–11 in HANDOFF.md 2 nedēļas atpakaļ
README.md 58a6b3013e Phase 1: skeleton 2 nedēļas atpakaļ
composer.json 58a6b3013e Phase 1: skeleton 2 nedēļas atpakaļ
docker-compose.yml 58a6b3013e Phase 1: skeleton 2 nedēļas atpakaļ
phpunit.xml 21d0c4ac33 Phase 7: audit viewer + security headers + PHPUnit 2 nedēļas atpakaļ

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.