# Article 11 Fork-Kit — sync exclusions
# Use this in .gitignore, .syncignore for cloud drives, and as a manual reference.

# Secrets — NEVER sync these
.env
.env.*
!.env.example
*.secrets
*.secret
NODE_KEYS_*
*_KEYS_*

# Wrangler local state
.wrangler/
wrangler.toml          # Contains your KV/D1 IDs; not secret but not template

# Build/cache
node_modules/
dist/
build/
.cache/
*.log

# Backups (these often contain old credentials)
*.bak
*.backup
*.old
*.PRE_*
backup/
backups/
_backup/

# OS junk
.DS_Store
Thumbs.db
desktop.ini

# Editor
.vscode/
.idea/
*.swp
*.swo

# Local-only logs
logs/
*.log.*