暂无描述

achiappa be193d258f Phase 2: Entra OIDC auth + session + audit log 2 周之前
assets 58a6b3013e Phase 1: skeleton 2 周之前
migrations be193d258f Phase 2: Entra OIDC auth + session + audit log 2 周之前
public be193d258f Phase 2: Entra OIDC auth + session + audit log 2 周之前
src be193d258f Phase 2: Entra OIDC auth + session + audit log 2 周之前
tests 58a6b3013e Phase 1: skeleton 2 周之前
views be193d258f Phase 2: Entra OIDC auth + session + audit log 2 周之前
.env.example 58a6b3013e Phase 1: skeleton 2 周之前
.gitignore 58a6b3013e Phase 1: skeleton 2 周之前
Dockerfile 58a6b3013e Phase 1: skeleton 2 周之前
README.md 58a6b3013e Phase 1: skeleton 2 周之前
composer.json 58a6b3013e Phase 1: skeleton 2 周之前
docker-compose.yml 58a6b3013e Phase 1: skeleton 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.