Files
cup26/.gitignore
T
NilsBriggen 047e9f8767 Elo trajectories: a century of strength on every team page
buildRatings samples each WC team's rating along the full walk (yearly
historically, monthly since 2022) into elohistory.json (~72KB, 48
teams). Team pages plot it as a clean SVG line with year and rating
gridlines — Germany's century, 1908 → today, in one glance.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-12 01:12:36 +02:00

29 lines
777 B
Plaintext

node_modules
dist
dev-dist
server/dist
server/node_modules
*.tsbuildinfo
.DS_Store
.env
.env.local
# local SQLite (dev); prod DB lives on the Docker volume
/data/cup26.db
/data/cup26.db-wal
/data/cup26.db-shm
# raw data lake (7+ GB StatsBomb corpus etc.) — processed aggregates ship, raw stays local
/data/lake/
# Generated build artifacts (reproduced by `npm run data:build`)
public/data/fixtures.json
public/data/ratings.json
public/data/h2h.json
public/data/scorers.json
public/data/backtest.json
public/data/dcTrain.json
public/data/elohistory.json
public/pwa-192x192.png
public/pwa-512x512.png
public/favicon.svg
# Note: public/data/viz/*.json IS committed — it's processed from a fixed
# historical StatsBomb match, so we don't refetch 3.7MB of events at build time.