Files
Password-Manager/.gitignore
T
r-zakarya 1f56a03492 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 <noreply@anthropic.com>
2026-06-26 21:22:02 +01:00

59 lines
1.1 KiB
Plaintext

vault-error.log
# Vault database — contains user secrets (encrypted but still secret).
# Auto-created on first run by the Delphi/PHP backend via InitDatabase().
# Never track this file. Use vault.db.example for schema reference if needed.
vault.db
vault.db-journal
vault.db-wal
vault.db-shm
# Delphi build artifacts
*.dcu
*.dcp
*.dpu
*.local
*.identcache
*.dsk
*.~dsk
*.~*
*.~bpl
*.~dll
*.~exe
*.exe
*.dll
*.bpl
*.so
*.dylib
__history/
__recovery/
Win32/
Win64/
OSX64/
Android/
iOSDevice64/
# Debug logs (created at runtime next to the exe)
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