Financial statements of pub.solar n.e.V.
Go to file
teutat3s 91304e65ba
fix: ignore CSV files to avoid uploading them
accidently
2024-04-07 16:37:16 +02:00
import Update finances to 07.04.2024 2024-04-07 16:07:01 +02:00
.envrc feat: initial flake devshell for hledger 2023-12-15 20:42:56 +01:00
.gitignore fix: ignore CSV files to avoid uploading them 2024-04-07 16:37:16 +02:00
README.md feat: use sed to write reports to hard-coded line 2024-04-07 16:22:40 +02:00
finances.hledger Update finances to 07.04.2024 2024-04-07 16:07:01 +02:00
flake.lock chore: update flake inputs 2024-04-07 16:03:19 +02:00
flake.nix feat: initial flake devshell for hledger 2023-12-15 20:42:56 +01:00

README.md

pub.solar finances

This repository is used to track the finances of pub.solar transparently. We use hledger to create finance report in a minimalistic, terminal friendly way.

Finances report table

Income Statement 2023-01-01..2024-12-31

Commodity20232024Total
 
Revenues
donations:member415.00390.00805.00
donations:non-member87.0074.43161.43
total502.00464.43966.43
 
Expenses
infra:domain52.40052.40
infra:file-storage26.0211.7737.79
infra:server124.4791.87216.34
total202.89103.64306.53
 
Net:299.11360.79659.90

Import new statements

  • place csv file into import directory
    • rename to expenses.csv for expenses or
    • rename to donations-member.csv for donations of members
    • rename to donations-non-member.csv for donations of non-members
  • execute hledger import -f finances.hledger import/<csv-file>

Quick start how to use hledger

Installing hledger with nix, the package manager.

git clone gitea@git.pub.solar:pub-solar/finances.git finances && cd $_
nix develop

or with direnv.

git clone gitea@git.pub.solar:pub-solar/finances.git finances && cd $_
direnv allow

Creating a report without negative numbers

hledger incomestatement --file ./finances.hledger --layout bare --pretty --drop 1

Creating a web report, viewable in a browser

hledger-web --file ./finances.hledger

Writing a HTML table to the README

hledger incomestatement --file ./finances.hledger --layout bare --pretty --drop 1 --output-format html --yearly --row-total | sed -i '8r /dev/stdin' README.md
sed -i '14,17d' README.md