From 3b7b84affeaebdecfffcae7a9ba971ef58249732 Mon Sep 17 00:00:00 2001 From: ddidderr Date: Sat, 29 Aug 2026 15:55:41 +0200 Subject: [PATCH] chore(highscores): ignore the local SQLite database The service defaults to a database file in the Rust project directory when no production path is configured. Ignore that file and SQLite sidecars so local runs do not create accidental repository changes. Test Plan: - `git diff --cached --check` -- passed - Ignore patterns verified against the default database filename --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 9280984..46d26e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ target/ __pycache__/ +/tdkpin-rs/highscores.sqlite3 +/tdkpin-rs/highscores.sqlite3-*