From 66c3ab78642012b3e935dcb00beda834848151f4 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 7 Feb 2026 17:13:55 -0500 Subject: [PATCH] chore: clarify gitignore pattern for server binary Change 'server' to '/server' to make pattern more explicit. This prevents editors from confusing the ignored server binary with the tracked cmd/server/ source code directory. Pattern now only matches: - /server (binary at root, ignored) - NOT cmd/server/ (source directory, tracked) --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 429a9c2..a1670c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,7 @@ # Build artifacts bookhoard bookhoard.* -server -server +/server # Node.js node_modules/