Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bios-marcel/baka
My stupid personal financial management
https://github.com/bios-marcel/baka
java javafx openjfx
Last synced: 3 months ago
JSON representation
My stupid personal financial management
- Host: GitHub
- URL: https://github.com/bios-marcel/baka
- Owner: Bios-Marcel
- License: bsd-3-clause
- Created: 2024-06-23T13:34:45.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-08-08T21:39:50.000Z (5 months ago)
- Last Synced: 2024-10-12T18:41:11.003Z (3 months ago)
- Topics: java, javafx, openjfx
- Language: Java
- Homepage:
- Size: 367 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A simple visualisation tool for personal finances.
Merge different bank accounts histories together, classify payments and do predictions.## Concept
This application DOES NOT connect to your bank or your bank account in any way. No data is sent anywhere.
It uses Export-Formats offered by your bank. Currently, there are a couple of hard-coded ones that I am using for test
purposes. The plan is to have a configurable CSV importer, as most banks seem to offer CSV exporting.## Data Storage
For storage, we are using `Eclipse Store` (previously `MicroStream`). The data is stored in `$env.APPDATA`.
In order to delete the data, simply remove `$env.APPDATA/baka`.
## Installation
### Windows
An installer can be built via maven:
```shell
./gradlew build jpackage
```Updating an existing installation does not work correctly as of now.
To update, a manual uninstallation is required before installation.Pre-built installers are also available as build artifacts.
### Other systems
TODO
## Development
### Requirements
* Required
* OpenJDK 22
* Optional
* Building a Windows installer: https://github.com/wixtoolset/wix3/releasesThe build system is provided with the code. While you could invoke a pre-installed `gradle`, it is recommended to
use `./gradlew` instead, as this will get a specific gradle version, preventing compatibility issues.### Debug Mode
The debug mode offers additional (potentially dangerous) features. It can be toggled via `Ctrl + Shift + D`.