Monorepo for PeFi, an application to track my own finances.
Find a file
2024-02-07 14:33:11 +02:00
.docker/nginx Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
.idea Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
.readme Update container diagram 2024-02-07 14:33:11 +02:00
gradle/wrapper Initial commit. Frontend + API Gateway + Backend service 2023-12-14 20:11:45 +02:00
pefi-common Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
pefi-core-api Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
pefi-frontend Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
pefi-login-service Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
pefi-statements-api Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
pefi-widgets-api Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
.env.example Clean up docker-compose 2024-02-05 21:40:27 +02:00
.gitignore Add SSL configs, configure session cookies ( mostly defaults ), fix login/logout on frontend 2023-12-14 23:56:59 +02:00
build.gradle Rename submodules, add frontend as submodule 2024-02-04 18:19:12 +02:00
docker-compose.yml Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00
gradlew Initial commit. Frontend + API Gateway + Backend service 2023-12-14 20:11:45 +02:00
gradlew.bat Initial commit. Frontend + API Gateway + Backend service 2023-12-14 20:11:45 +02:00
README.md Update container diagram 2024-02-07 14:33:11 +02:00
settings.gradle Add Kafka, zookeeper. Add nginx. 2024-02-07 14:10:53 +02:00

Personal Finances

This is a web application I use to keep track of my own finances. It's open source, so if you've come across this repository, know that you are welcome to use it for yourself!

Features

Upload Statements

The first step in using the Personal Finances app is to upload your bank statement. It is expected to be in an spreadsheet format, with 1 sheet inside, where each transaction is on a separate row. The application currently only has the ability to parse columns with simple types, no formulas or combined rows or anything like that.

upload_statement.png

Mapping

Once uploaded, it is necessary to map the spreadsheet data into the standard transaction format of the application. This is done via the same page where the statement is uploaded, by clicking the Map button. Once clicked, you have the ability to map columns from the sheet into fields of the transaction, based on their type.

map_statement.png

Categorize Your Transactions

To make full use of the available feature-set, you need to categorize every transaction. This is because different banks have different formats for how they describe things like the cause of a transaction. Categories are there to make the whole process easier. One transaction in the application can be assigned multiple categories.

To create a new category, go to the Categories page, and click the Add Category button. It's possible to export and import categories as well, in case you wish to experiment a little with your categorizations, but don't want to lose your previous category definitions.

img.png

Configure Categorization Rules

Once a category is created, in order to apply it to transactions, you must define some categorization rules. This happens by clicking on the category chip in the Categories page, and on the lower half of the page, a new menu will appear, allowing you to define your rules.

You can pick one of 3 behaviors for a category when it comes to evaluating rules: Any ( Default ), All, or None:

  • Any - any of the defined rules must evaluate to true in order for the category to be assigned to the transaction
  • All - all of the defined rules must evaluate to true
  • None - none of the defined rules must evaluate to true

Each category holds multiple categorization rules. Each rule can be configured to look at a field directly, or a combination of other rules ( via the And, Or or Not rules ).

categorization_rules.png

Statistics

Once categories have been defined, and transactions categorized, you can make use of the Statistics page to define widgets.

Widgets come in several types, but their general purpose is to aggregate information from your transactions based on your categories, and display it to you in a human-friendly manner. The layout of the widgets is free-form, each one can be placed freely on the page, allowing you to create your own personal financial dashboard.

img.png

Browse Your Transactions

You can access your parsed transactions from the Transactions page

img.png

Setup

The Personal Finances application is actually 3+1 separate applications. The first 3 can be found in this very repository, and they are the frontend, the API gateway, and the PersonalFinancesService. The +1 mentioned is actually the authorization provider, which in theory could be anything that supports OpenIDConnect or OAuth2. My personal auth provider auth.mvvasilev.dev uses the awesome Authentik project.

Building Docker Images

docker-compose build in root directory

Docker Compose

see docker-compose.yml

Container Diagram

pefi-architecture.png