A beancount fava extension to add a envelope budgeting capability to fava and beancount. It is developed as an fava plugin and CLI.
Click the repl.it link to be able to see the plugin in action
- Click the link
- Click Run
- When the web pane opens, click the open in new tab ( have not figurec ouf why it is not showing in the initial window )
- Click the "Fava Envelope" link in fava to see the plugin
python -m pip install fava-envelope
- add example file for screenshots and testing
- Add testing
- add charts
Add this to your beancount journal, and start fava as normal
2000-01-01 custom "fava-extension" "fava_envelope" "{}"
You should now see 'Envelope' in your fava window. You must set up a budget (see below), or else Fava will report a 404 error.
start date in the format <4 digit year>-<2 digit month>
2020-01-01 custom "envelope" "start date" "2020-01"
You will need to specify the Assets and Liabilities you want included in your budget (For example ignoring Investment accounts). you can use regular expression in these statements
2020-01-01 custom "envelope" "budget account" "Assets:Checking"
2020-01-01 custom "envelope" "budget account" "Liabilities:Credit-Cards:*"
By default fava-envelope will use the Assets/Liabilities/Income/Expenses buckets that are not listed in the budget accounts. this directive allows you to map them to another bucket
2020-01-01 custom "envelope" "mapping" "Expenses:Food:*" "Expenses:Food"
2020-01-31 custom "envelope" "allocate" "Expenses:Food" 100.00
The envelopes will read the operating currency from the core beancount option (using the first one if multiple operating currencies are set.
option "operating_currency" "EUR"
It will default to USD if this option is not set. Only a single currency is supported for a given budget.
The operating currency of the budget can now also be set as an option.
2020-01-31 custom "envelope" "currency" "EUR"
To set multiple budgets in multiple currencies, define the currencies as a list in the extension options.
2000-01-01 custom "fava-extension" "fava_envelope" "{'currencies':['GBP', 'USD']}"
Then each envelope directive has to be postponed by the currency to identify which budget it refers to.
2020-01-01 custom "envelopeGBP" "budget account" "Assets:Checking"
2020-01-31 custom "envelopeUSD" "allocate" "Expenses:Food" 100.00
For multiple budgets, an account can be set to be treated as an income account, so that operations from this account will be treated as income for envelope budgeting purpose (only).
2020-01-31 "envelopeGBP" "income account" "Assets:USD:MyBank"