From 3f3e9779535ccffe3366496f7e947ddd9b2fb879 Mon Sep 17 00:00:00 2001 From: Victor Hugo Vargas Date: Fri, 17 Jul 2026 00:56:51 -0700 Subject: [PATCH] chore: ignore compiled binaries in /bin/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4eedc25..eca4d84 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ vendor/ coverage.out coverage.html +/bin/ # SQLite (RAG index) *.db