- Run @vite-pwa/assets-generator minimal2023Preset against public/logo.svg - Produce: favicon.ico (861 B, non-trivial), favicon.svg, icon-192.png (1617 B), icon-512.png (4221 B), icon-maskable-512.png (3353 B, 512x512 distinct maskable with safe-zone padding), apple-touch-icon.png (1110 B, 180x180) - Replace 3 placeholder stubs with real generated assets - Update pwa:icons script to include post-generation canonical rename step - Add generator intermediate output filenames to .gitignore
76 lines
1.7 KiB
Plaintext
76 lines
1.7 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
.dist/
|
|
|
|
# Environment — NEVER commit secrets at rest (DB passwords, OIDC secrets, encryption key,
|
|
# Fastmail app passwords). Ignore .env and every .env.* variant, but keep the example template.
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Claude Code local (per-machine) settings — never tracked
|
|
.claude/settings.local.json
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Drizzle migrations (generated — not secrets, but keep clean)
|
|
# apps/api/src/db/migrations/
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Playwright CLI artifacts + ad-hoc screenshots (local verification only)
|
|
.playwright-cli/
|
|
gate2-*.png
|
|
|
|
# Operator-only credential seed (run out-of-band; never tracked)
|
|
apps/api/scripts/seed-credential.mjs
|
|
|
|
# Graphify build cache (regenerable; committed artifacts live in .planning/graphs/)
|
|
graphify-out/
|
|
|
|
# Intel / graph diff baselines (local-only; regenerated on each refresh/build)
|
|
.planning/intel/.last-refresh.json
|
|
.planning/graphs/.last-build-snapshot.json
|
|
.planning/graphs/.last-build-status.json
|
|
.planning/research/.cache/
|
|
|
|
# Transient workflow scratch
|
|
.planning/tmp/
|
|
|
|
# Playwright e2e harness outputs (regenerated every run; Phase 7 mobile test harness)
|
|
apps/pwa/test-results/
|
|
apps/pwa/playwright-report/
|
|
apps/pwa/blob-report/
|
|
|
|
# PWA icon generator intermediate output (pwa:icons renames these to canonical names)
|
|
apps/pwa/public/pwa-64x64.png
|
|
apps/pwa/public/pwa-192x192.png
|
|
apps/pwa/public/pwa-512x512.png
|
|
apps/pwa/public/maskable-icon-512x512.png
|
|
apps/pwa/public/apple-touch-icon-180x180.png
|
|
|
|
# MemPalace per-project files (issue #185)
|
|
mempalace.yaml
|
|
entities.json
|