payload-types.ts was gitignored so Docker builder had no file to compile against — caused TS2307 "Cannot find module @/payload-types" in production build. Regenerated types from current schema and removed from .gitignore so it is always available in the build context. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
61 lines
682 B
Text
61 lines
682 B
Text
# Claude Code / Ruflo (AI tooling — not part of the project)
|
|
.claude/
|
|
.claude-flow/
|
|
.mcp.json
|
|
CLAUDE.md
|
|
.swarm/
|
|
ruvector.db
|
|
|
|
|
|
# Database files
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Next.js
|
|
.next/
|
|
out/
|
|
|
|
# Payload generated
|
|
src/generated-schema.graphql
|
|
|
|
# Build
|
|
build/
|
|
|
|
# Coverage
|
|
coverage/
|
|
|
|
# Migrations (auto-generated, committed separately)
|
|
# migrations/*.ts
|
|
|
|
# pnpm
|
|
.pnpm-store/
|
|
|
|
# TypeScript
|
|
tsconfig.tsbuildinfo
|
|
|
|
# Playwright test output
|
|
test-results/
|
|
playwright-report/
|
|
|
|
# AI tooling runtime files
|
|
agentdb.rvf
|
|
agentdb.rvf.lock
|
|
.playwright-mcp/
|
|
|
|
# Debug screenshots (root-level only)
|
|
/*.png
|
|
/*.jpg
|
|
/*.jpeg
|
|
.superpowers/
|