123456789101112131415161718192021222324252627 |
- ledger_path = "./ledger"
- [units]
- CAD = { name = "Canadian Dollar", precision = 2 }
- USD = { name = "United States Dollar", precision = 2 }
- [accounts.initial]
- [accounts.unbalanced]
- [accounts.chequing]
- title = "Chequing"
- description = ""
- annotations = { abc = "def" }
- unit = "CAD"
- [accounts.savings]
- unit = "CAD"
- import = { format = "csv", skip_start = 1, cols = ["datestamp", "title", "change", "balance"], date_format = "%d %b %Y" }
- [accounts.savings_usd]
- unit = "USD"
- [accounts.loan]
- [accounts."a.b/c"]
|