From 1f56a034927d17f052ffa61f19515297aba376ac Mon Sep 17 00:00:00 2001 From: r-zakarya <82443831+r-zakarya@users.noreply.github.com> Date: Fri, 26 Jun 2026 21:22:02 +0100 Subject: [PATCH] chore: ignore local-only debug + packaging artefacts build.log, config.txt, PMServer.rar, quickunlock.bin, vault copies and screenshot drops were cluttering `git status`. None of these belong in the repo: build/config/rar are per-machine, quickunlock.bin is a DPAPI blob bound to the dev user's Windows account, vault copies are personal data, screenshots are scratch. Co-Authored-By: Claude Opus 4.7 --- .gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.gitignore b/.gitignore index 003ba7f..63d4101 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,20 @@ pm-debug.log # Asset build log (regenerated by BuildAssets.cmd/ps1) delphi-backend/assets/build.log + +# Local-only debug / packaging artefacts next to the exe. +delphi-backend/build.log +delphi-backend/config.txt +delphi-backend/PMServer.rar + +# Quick-unlock DPAPI blob — device-bound, MUST NOT be committed. +delphi-backend/quickunlock.bin + +# Vault backup copies users keep next to the exe while testing. +delphi-backend/vault*.db +delphi-backend/vault - Copie*.db + +# Screenshots / scratch images dropped in the repo root during dev. +*.png +*.jpg +*.jpeg