20 lines
606 B
Markdown
20 lines
606 B
Markdown
# Better Financial Report
|
|
|
|
## Example to generate part of the sankey diagram
|
|
`docker run -it -v $(pwd):/mnt/test nixos/nix bash /mnt/test/run.sh` with:
|
|
`run.sh`:
|
|
```
|
|
set -e
|
|
|
|
nix-channel --update
|
|
nix-env -i nodejs
|
|
|
|
|
|
npx --yes firefly-iii-sankey -u https://firefly.lol3r.com -t {TOKEN} -f sankeymatic -p 2026-05 --with-accounts
|
|
```
|
|
|
|
## References
|
|
* [Firefly Email Summary](https://github.com/davidschlachter/firefly-iii-email-summary)
|
|
* [Improved Firefly Email Summary](https://github.com/yemzikk/firefly-iii-email-summary)
|
|
* [Generate Sankey from Firefly](https://github.com/barreeeiroo/Firefly-III-Sankey)
|