chore(canary): drop stray /healthcheck binary + ignore cmd build artifacts

go build ./cmd/healthcheck (run for verification, not via the bin/ recipe)
drops the binary in the working dir. Untracked previously; landed in the
last commit by accident. Gitignore now lists each cmd binary explicitly so
the same mistake can't recur for canary, healthcheck, or the two pdf/docx
template builders.
This commit is contained in:
CarterPerez-dev 2026-05-18 00:03:20 -04:00
parent 10321a9a61
commit de6ac71954
2 changed files with 5 additions and 0 deletions

View File

@ -24,6 +24,11 @@ backend/coverage.html
backend/.golangci-cache/
backend/data/
backend/keys/
# stray binaries from `go build ./cmd/<name>` run in backend/
backend/canary
backend/healthcheck
backend/buildpdftemplate
backend/builddocxtemplate
# ----------------------------------------------------------------------------
# Frontend (Node / Vite)