-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-CONFIG.yaml
51 lines (47 loc) · 1.46 KB
/
example-CONFIG.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
categories:
"Tartine Bakery": "Expenses:Food:Snacks"
"Trader Joe's": "Expenses:Food:Groceries"
"NETFLIX.COM": "Expenses:Entertainment:Movies"
"Lyft *Ride": "Expenses:Transport:Taxi"
"Autopay Payment": "Liabilities:AccountsPayable"
importers:
# fully automated
amex:
currency: USD
importer: OFX
downloader: OFX
OFX-id: 424 # https://www.ofxhome.com/index.php/institution/view/424
op-id: "<1Password UUID>"
accounts:
- name: "Liabilities:US:AmEx:Green"
id: "1234567" # real account ID from bank, used by `bean-identify`
- name: "Liabilities:US:AmEx:Platinum"
id: "456789" # needs to be a string!
# totally manual
bofa:
currency: USD
importer: CSV
downloader: custom
instructions:
Go to the site and fownload in CSV format from the account page
column_map: # keys from beancount.ingest.importers.csv.Col
DATE: "Date"
AMOUNT_DEBIT: "Debit"
AMOUNT_CREDIT: "Credit"
PAYEE: "Description"
BALANCE: "Balance"
accounts:
- name: "Assets:US:BofA:Checking"
id: "1234"
filename_regexp: "BankOfAmerica\\.csv"
content_regexp: "123456"
# import is OFX (less error-prone than CSV), but downloading is manual
chase:
currency: USD
importer: OFX
downloader: custom
instructions:
Go to the site and download in OFX format from the account page
accounts:
- name: "Assets:US:Chase:Checking"
id: "87654321"