Files
2025-10-31 23:11:33 +00:00

64 lines
1.2 KiB
Plaintext

# ============================================
# Crussell Nail Salon - RAG Ignore Patterns
# ============================================
# --------------------
# Version Control
# --------------------
.git/
# --------------------
# Frontend Build Artifacts & Dependencies
# --------------------
frontend/node_modules/
frontend/.svelte-kit/
frontend/package-lock.json
frontend/dist/
frontend/build/
# --------------------
# Backend Build Artifacts
# --------------------
backend/go.sum
backend/*.exe
backend/*.so
backend/*.dll
backend/backend # compiled binary
# --------------------
# Development & Cache Files
# --------------------
*.log
*.tmp
*.temp
.DS_Store
Thumbs.db
# --------------------
# IDE & Editor Files
# --------------------
.vscode/
.idea/
*.swp
*.swo
# --------------------
# Specific Exclusions - Low Value for RAG
# --------------------
sabredav/ # External library, not your business logic
nginx/conf.d/ # Basic nginx config, rarely searched
# --------------------
# Dependency Lock Files
# --------------------
package-lock.json
yarn.lock
composer.lock
# --------------------
# Generated Content
# --------------------
__pycache__/
*.pyc
*.pyo
*.pyd