-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsimple.toml
38 lines (31 loc) · 1.11 KB
/
simple.toml
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
### Configuration Simple example
###
### This an example how to use FS storage, without any
### fancy features (no strict, no audit, no git).
###
### See tackler.toml file for full configuration options
### and documentation.
###
### The format of this file is TOML (https://toml.io/en/)
[kernel]
strict = false
audit = { mode = false, hash = "SHA-256" }
timestamp = { default-time = 00:00:00, timezone = { name = "UTC" } }
input = { storage = "fs", fs = { path = "simple", dir = "txns", suffix = "txn" } }
[transaction]
accounts = { path = "none" }
commodities = { path = "none" }
tags = { path = "none" }
### Report Configuration
[report]
report-timezone = "UTC"
scale = { min = 2, max = 2 }
accounts = [ "Expenses(:.*)?" ]
targets = [ "balance", "balance-group", "register" ]
balance = { title = "Balance Report" }
balance-group = { title = "Balance Group Report", group-by = "month" }
register = { title = "Register Report", accounts = [ "Assets:.*", "Expenses:.*", "Income:.*" ]}
### Export Configuration
[export]
targets = [ ]
equity = { accounts = [ "Assets:.*", ], equity-account = "Equity:Balance" }