From bb12a3e9becec6046cefb011dd86b8491b0b72d5 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sun, 17 May 2026 13:14:20 -0400 Subject: [PATCH] Gitignore raw statements/secrets; add seed merchant_map --- .gitignore | 9 +++++++++ merchant_map.json | 11 +++++++++++ 2 files changed, 20 insertions(+) create mode 100644 merchant_map.json diff --git a/.gitignore b/.gitignore index 7c9b0d9..0d07d7f 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/merchant_map.json b/merchant_map.json new file mode 100644 index 0000000..e180e8a --- /dev/null +++ b/merchant_map.json @@ -0,0 +1,11 @@ +{ + "rules": [ + { + "match": "SHEETZ", + "account_name": "Sheetz", + "category": "Fuel", + "type": "withdrawal", + "account_id": 566 + } + ] +}