Exclude: - AGENT_*.md/txt files (session summaries) - SESSION_*.md files - PASTE_INTO_*.txt files - Test scripts and integration scripts - Reviews directory These are temporary work files that shouldn't be committed. 🚂 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
73 lines
851 B
Text
73 lines
851 B
Text
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Database
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Uploads
|
|
uploads/
|
|
temp/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
playwright-report/
|
|
test-results/
|
|
|
|
# Meilisearch
|
|
data.ms/
|
|
meilisearch-data/
|
|
|
|
# Sensitive handover docs (do not commit)
|
|
docs/handover/PATHS_AND_CREDENTIALS.md
|
|
meilisearch
|
|
data/
|
|
|
|
# Manual test files
|
|
playwright.config.manual.js
|
|
tests/e2e/frontend-detailed.spec.js
|
|
tests/e2e/frontend-manual.spec.js
|
|
|
|
# Agent session summaries and temporary work files
|
|
AGENT_*.md
|
|
AGENT_*.txt
|
|
SESSION_*.md
|
|
PASTE_INTO_*.txt
|
|
*_SUMMARY.txt
|
|
*_COMPLETE.md
|
|
*_GUIDE.md
|
|
*_CHECKLIST.md
|
|
integrate*.sh
|
|
integrate*.py
|
|
test-*.js
|
|
reviews/
|