Огляд

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
Показати все

Остання активність

Активність журналу з урахуванням проведень

Транзакції
Найновіші транзакції за поточними фільтрами

Доходи проти витрат

Доходи проти витрат
Бar chart comparing total income and expenses for each interval in the selected period.

Баланс Sheet

Розподіл активів
Візуальне представлення структури budgeting-envelopes активів
Пiabilities 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.