# Exclude local desktop build artifacts and sidecar binaries from deployments
# These files are large and not needed by the Vercel-hosted frontend/API

# Tauri build outputs
src-tauri/target/
src-tauri/bundle/

# Sidecar and bundled node binaries
src-tauri/sidecar/
src-tauri/**/node

# macOS disk images and app bundles
**/*.dmg
**/*.app

# Rust/Cargo build artifacts (safety)
target/

# Common local artifacts
.DS_Store

# Never deploy api test files: every non-underscore file under api/ becomes a
# live serverless function, and a deployed *.test.mjs executes its whole
# node:test suite (production env + Sentry) on every request (WORLDMONITOR-VD).
# Guarded by tests/deploy-config.test.mjs.
api/**/*.test.mjs
