Six site improvements picked from a "what could be better" review, plus a Jest test suite covering the two areas with the trickiest money-handling history in this project (early-bird pricing tranches, donation-leg accounting): - "Add to calendar" .ics download on event pages and in confirmation emails - sitemap.xml, robots.txt, and Open Graph/Twitter metadata for public pages - Sentry error monitoring (backend + frontend), a no-op until SENTRY_DSN is set - Nightly local pg_dump backups with a Site Settings tab to browse/trigger/download - Admin audit trail for refunds, donations, manual registrations, event and settings changes, and staff-initiated cancellations - Jest tests reproducing and guarding against the 1.8.0 tranche-pricing bug and the 1.4.2 donation-balance-inflation bug Wallet passes (Google/Apple) were scoped out of this round — Apple Wallet needs a paid Apple Developer account the project doesn't have yet, and the user preferred shipping both together later rather than Google alone now. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
41 lines
522 B
Plaintext
41 lines
522 B
Plaintext
# dependencies
|
|
node_modules/
|
|
|
|
# env files (never commit real secrets — .env.example files are fine)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
|
|
# build output
|
|
dist/
|
|
build/
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
*.log
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# misc scratch / generated files
|
|
temp/
|
|
backend/public/uploads/
|
|
backend/backups/
|
|
|
|
# runtime data stores (mutated by the running app, not source)
|
|
backend/data/scheduled-emails.json
|
|
backend/data/banner.json |