From 7ec5ef5d99b198e2a135ceaf8d9a9d2055c1f10d Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Fri, 31 Jan 2020 19:35:42 +1100 Subject: [PATCH] Update example config for cash accounting --- config.example.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.example.yml b/config.example.yml index f40060a..360dda7 100644 --- a/config.example.yml +++ b/config.example.yml @@ -1,13 +1,19 @@ +# Set up how we will call Ledger ledger_file: /path/to/ledger.journal ledger_args: ['--pedantic', '--recursive-aliases'] report_currency: $ +# Tell ledger-pyreport about the top-level account categories assets_account: Assets liabilities_account: Liabilities equity_account: Equity income_account: Income expenses_account: Expenses +# These accounts will automatically be populated on reports unrealized_gains: 'Equity:Unrealized Gains' retained_earnings: 'Equity:Retained Earnings' current_year_earnings: 'Equity:Current Year Earnings' + +# Which asset accounts to consider in cash basis mode +cash_asset_accounts: ['Assets:Cash on Hand', 'Assets:Cash at Bank']