-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaudit.toml
38 lines (31 loc) · 1.08 KB
/
audit.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 for Audit Example
###
### This is an example how to use auditing features
### with Tackler.
###
### See tackler.toml file for full configuration options
### and documentation.
###
### The format of this file is TOML (https://toml.io/en/)
[kernel]
strict = true
audit = { mode = true, hash = "SHA-256" }
timestamp = { default-time = 00:00:00, timezone = { name = "UTC" } }
input = { storage = "git", git = { repo = "../suite/audit/audit-repo.git", dir = "txns", ref = "txns-1E1", suffix = "txn" } }
[transaction]
accounts = { path = "audit/accounts.toml" }
commodities = { path = "audit/commodities.toml" }
tags = { path = "none" }
### Report Configuration
[report]
report-timezone = "UTC"
scale = { min = 2, max = 2 }
accounts = [ "a:.*" ]
targets = [ "balance" ]
balance = { title = "Balance Report" }
balance-group = { title = "Balance Group Report", group-by = "month" }
register = { title = "Register Report", accounts = [ "e:.*", "a:.*" ]}
### Export Configuration
[export]
targets = [ ]
equity = { accounts = [ "a:.*", ], equity-account = "Equity:Balance" }