# ©AngelaMos | 2026 # .gitignore # ---------------------------------------------------------------------------- # Dev-only documentation (never committed) # ---------------------------------------------------------------------------- docs/ # ---------------------------------------------------------------------------- # Environment files (secrets) # ---------------------------------------------------------------------------- .env .env.* !.env.example # ---------------------------------------------------------------------------- # Backend (Go) # ---------------------------------------------------------------------------- backend/bin/ backend/tmp/ backend/*.test backend/coverage.out backend/coverage.html backend/.golangci-cache/ backend/data/ backend/keys/ # stray binaries from `go build ./cmd/` run in backend/ backend/canary backend/healthcheck backend/buildpdftemplate backend/builddocxtemplate # ---------------------------------------------------------------------------- # Frontend (Node / Vite) # ---------------------------------------------------------------------------- frontend/node_modules/ frontend/dist/ frontend/.vite/ frontend/.vite-temp/ frontend/.tmp/ frontend/.biome_cache/ frontend/.turbo/ frontend/coverage/ # ---------------------------------------------------------------------------- # Local data volumes (when bind-mounted) # ---------------------------------------------------------------------------- data/ *.mmdb *.db *.sqlite *.sqlite3 # ---------------------------------------------------------------------------- # OS / Editor # ---------------------------------------------------------------------------- .DS_Store Thumbs.db .idea/ .vscode/ *.swp *.swo *~ # ---------------------------------------------------------------------------- # Logs # ---------------------------------------------------------------------------- *.log logs/ # ---------------------------------------------------------------------------- # Generic build artifacts # ---------------------------------------------------------------------------- dist/ build/ bin/ # ---------------------------------------------------------------------------- # Linter / pre-commit caches # ---------------------------------------------------------------------------- .cache/ .pre-commit-cache/ .ruff_cache/