Gitignore raw statements/secrets; add seed merchant_map

This commit is contained in:
Dane Sabo 2026-05-17 13:14:20 -04:00
parent 63894b97fd
commit bb12a3e9be
2 changed files with 20 additions and 0 deletions

9
.gitignore vendored
View File

@ -1,5 +1,14 @@
# Secrets — never commit the Firefly token
.firefly.json
# Raw bank/credit-card statements — sensitive (account numbers, full history),
# re-exportable from the banks anytime. Keep local only.
EXPORTS/
*.qfx
*.QFX
*.ofx
*.OFX
*.csv
# macOS cruft
.DS_Store

11
merchant_map.json Normal file
View File

@ -0,0 +1,11 @@
{
"rules": [
{
"match": "SHEETZ",
"account_name": "Sheetz",
"category": "Fuel",
"type": "withdrawal",
"account_id": 566
}
]
}