chore: ignore compiled binaries in /bin/

The chat-bot binary is built into ./bin/chat-bot via `go build -o bin/chat-bot ./cmd/chat-bot`. Keep it out of git — never commit build artifacts.
This commit is contained in:
Victor Hugo Vargas 2026-07-17 00:56:51 -07:00
parent 18e555e338
commit 3f3e977953

1
.gitignore vendored
View file

@ -6,6 +6,7 @@
vendor/ vendor/
coverage.out coverage.out
coverage.html coverage.html
/bin/
# SQLite (RAG index) # SQLite (RAG index)
*.db *.db