2dd1d8cb01
Sets up the pnpm workspace, shared TS types and formula/predicate registries, and the six day-1 content layers (Code, Commits, Coffee, Tickets, Releases, Tech Debt). Why now: subsequent backend and client work depends on a stable shared contract — the formula registry approach (no eval) means content stays data-only and both sides can validate against the same types. Coverage gate at 90% (currently 98.83% branches, 100% lines). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
45 lines
457 B
Plaintext
45 lines
457 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
.next/
|
|
.turbo/
|
|
*.tsbuildinfo
|
|
|
|
# Test coverage
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json.example
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Prisma
|
|
packages/server/prisma/migrations/dev.db*
|
|
|
|
# Docker volumes
|
|
.docker-data/
|
|
|
|
# Vite
|
|
*.local
|
|
|
|
CLAUDE.md |