- Remove BMad template files (27 files) - unused AI agent templates - Remove IMPLEMENTATION_SUMMARY.md - content outdated and duplicated in docs/ - Remove docs/meteor_homepage_design.html - design mockup doesn't belong in code repo - Update .gitignore to exclude paper/ (reference materials) and *.mp4 (video files) - Add meteor-edge-client/detections/ to .gitignore 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
75 lines
935 B
Plaintext
75 lines
935 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/
|
|
|
|
# Reference materials
|
|
paper/
|
|
|
|
# Video files
|
|
*.mp4
|
|
|
|
# Edge client runtime files
|
|
meteor-edge-client/meteor_events/
|
|
meteor-edge-client/tmp-home/
|
|
meteor-edge-client/meteor-client-config.toml
|
|
meteor-edge-client/meteor-app-config.toml
|
|
meteor-edge-client/detections/
|
|
|
|
# Backend runtime files
|
|
meteor-web-backend/dev.log
|
|
meteor-web-backend/server.log |