Обзор

budgeting-envelopes

Финансовая панель для budgeting-envelopes. Просматривайте балансы счетов, тренды чистой стоимости и сводки доходов/расходов.

Финансовое положение

Чистая стоимость и составляющие её счета

Чистая стоимость
Активы плюс обязательства за последние 12 месяцев
18,775.74 USD
+3,500 USDпо сравнению с прошлым месяцем
Счета
Текущие остатки по счетам активов и обязательств

Движение денег

Ежемесячные доходы и расходы по категориям счетов

March 2026
Поступления
March 2026
+4,100 USD
Основные источники
Среднее за предыдущие 3 месяца
+4,100 USD
Показать все
Списания
March 2026
-600 USD
Основные расходы
Среднее за предыдущие 3 месяца
-2,062.13 USD
Показать все

Последние операции

Операции журнала с учётом проводок

Транзакции
Новые транзакции по текущим фильтрам

Доход vs Expenses

Доход vs Expenses
Столбчатая диаграмма сравнения общих доходов и расходов за каждый интервал выбранного периода.

Баланс Sheet

Распределение активов
Визуальное представление состава budgeting-envelopes активов
Обязательства Distribution
Визуальное представление состава budgeting-envelopes обязательств
Chart is empty.

Денежный поток

Денежный поток
Поток денег от источников дохода к расходам и инвестициям
README.md

Envelope Budgeting Example — beancount.io

A Beancount ledger demonstrating envelope (zero-based) budgeting: giving every dollar a job before it is spent, and seeing immediately when a category runs dry.

The method rests on one idea — envelopes are equity, not assets. The money is already in the bank; budgeting only decides what it is promised to. So an allocation moves value between equity subaccounts and never touches Assets, which is why the overlay can never disturb your bank reconciliation.

The ledger also declares matching native custom "budget" targets for each expense account. The equity postings provide rollover envelope balances; the custom directives power beancount.io's Budget report and its budget-versus-actual charts. They are complementary views of the same monthly plan.

Quick Start

bash
make install   # Install beancount + fava via uv
make check     # Verify the ledger has zero errors
make serve     # Open Fava at http://localhost:4739

File Guide

FileWhat it demonstrates
main.beanEntry point — options and include directives
accounts.beanCommodity definitions, real accounts, and the envelope tree
budgets.beanNative monthly targets used by the beancount.io Budget report
transactions/opening.beanStarting balances, and what "to be budgeted" means
transactions/funding.beanAssigning income to envelopes — kept separate from income arriving
transactions/spending.beanThe four-posting purchase: two for the money, two for the plan
transactions/overspending.beanAn envelope going negative, and covering it deliberately
transactions/sinking-funds.beanFunding an irregular bill monthly instead of being surprised by it
transactions/reset.beanRetiring a category, and reconciling against the bank

The one thing to copy

Spending is four postings, readable as two independent pairs:

beancount
2026-01-08 * "Whole Foods" "Weekly shop"
  Assets:Bank:Checking       -128.44 USD   ; what your bank sees
  Expenses:Groceries          128.44 USD
  Equity:Budget:Groceries    -128.44 USD   ; what your budget sees
  Equity:Budget:Unallocated   128.44 USD

Each pair balances on its own, so the budget overlay is always safe to add, remove, or ignore.