# pub.solar finances This repository is used to track the finances of pub.solar transparently. We use [hledger](https://hledger.org/) to create finance report in a minimalistic, terminal friendly way. ### Finances report table

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

Commodity20232024Total
 
Revenues
415.0090.00505.00
87.0010.0097.00
total502.00100.00602.00
 
Expenses
52.40052.40
26.022.2428.26
124.4744.03168.50
total202.8946.27249.16
 
Net:299.1153.73352.84
### Quick start how to use hledger Installing hledger with [nix](https://nixos.org/download), the package manager. ``` git clone gitea@git.pub.solar:pub-solar/finances.git finances && cd $_ nix develop ``` or with [direnv](https://github.com/nix-community/nix-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 >> README.md ```