- Remove .bmad-core/ and web-bundles/ (AI tool configs) - Remove tmp-home/ directories and cache files - Move test scripts to scripts/ directory - Move design file to docs/ directory - Remove duplicate AGENTS.md (content in CLAUDE.md) - Remove duplicate sample-app-config.toml - Update .gitignore with missing entries - Fix hardcoded credentials in check-migrations.js - Update IMPLEMENTATION_SUMMARY.md date 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
69 lines
882 B
Plaintext
69 lines
882 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
*/node_modules/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
.next/
|
|
target/
|
|
|
|
# Test outputs
|
|
coverage/
|
|
test-results/
|
|
playwright-report/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Test data
|
|
test-data/generated-test-data.json
|
|
test-data/localstack/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
tmp-home/
|
|
|
|
# AI/IDE tools (development only)
|
|
.bmad-core/
|
|
web-bundles/
|
|
.claude/
|
|
.cursor/
|
|
.gemini/
|
|
|
|
# Edge client runtime files
|
|
meteor-edge-client/meteor_events/
|
|
meteor-edge-client/tmp-home/
|
|
meteor-edge-client/video.mp4
|
|
meteor-edge-client/meteor-client-config.toml
|
|
meteor-edge-client/meteor-app-config.toml
|
|
|
|
# Backend runtime files
|
|
meteor-web-backend/dev.log
|
|
meteor-web-backend/server.log |