From 4f691d7aeb9558bc60e279d207c9b46b33fc8e21 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Tue, 3 Mar 2026 12:36:26 -0600 Subject: [PATCH] fix: add explicit .gitignore entry for service-creds.json (#40) Verified via `git ls-files storage/` that no storage files are tracked. The existing `storage*` pattern already covers the directory, but adding an explicit entry for `storage/paper-dynasty-service-creds.json` makes the intent clear for this sensitive Google Sheets service credential file. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index da22593..11e768a 100644 --- a/.gitignore +++ b/.gitignore @@ -131,6 +131,7 @@ dmypy.json # Project specifics .idea/ storage* +storage/paper-dynasty-service-creds.json *compose.yml **.db **/htmlcov -- 2.25.1