61 lines
789 B
Plaintext
61 lines
789 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build outputs (compiled JS, not source)
|
|
backend/dist/
|
|
cannaiq/dist/
|
|
findadispo/build/
|
|
findagram/build/
|
|
frontend/dist/
|
|
|
|
# Environment files (local secrets)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
backend/.env
|
|
backend/.env.local
|
|
|
|
# Database dumps and backups (large files)
|
|
*.dump
|
|
*.sql.backup
|
|
backup_*.sql
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Local storage (runtime data, not source)
|
|
backend/storage/
|
|
|
|
# Product images (crawled data, not source)
|
|
backend/public/images/products/
|
|
backend/public/images/brands/
|
|
|
|
# Vite cache
|
|
**/node_modules/.vite/
|
|
|
|
# Test coverage
|
|
coverage/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
llm-scraper/
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# Test/debug scripts
|
|
backend/scripts/test-*.ts
|
|
backend/scripts/run-*.ts
|