Setup autorebase on git
:
git config --global pull.rebase true
Old settings, used only for current repository:
git config branch.autosetuprebase always
git config branch.master.rebase true
Install deps with bun.
If you want to use a docker DB, start postgres DB with bun create-dev-db
.
Note for Windows: if server gives error role "Username" does not exist
,
log in to database (for example, with DBeaver), and create the missing role.
Create file .env
with the following contents (adjust as required):
Local dev DB is running on port 15488
by default (if installed via Docker
with bun create-dev-db
).
SERVER_PORT=3100
LOG_LEVEL=info
SHOW_ERROR_CAUSE=true
SESSION_TIMEOUT=20 minutes
DB_URL=postgresql:https://postgres:postgres@localhost:15488/postgres
DB_SSL=false
DEBUG=bookkeeper*
Setup database schema by running bun migrate
.
Add example data by running bun seed
.
Start server by running bun watch-server
.
The DEBUG
switch (in .env
or supplied as an environment variable) controls logging output.
Start development build by running bun ui
.
bun run <target>
or just bun <target>
:
server
: Start server for development use (runsbun --watch
)ui
: Start client builder for development (runsvite
)build-server
: Build production version of server underbuild-server/
build-client
: Build production bundle of web app underbuild/
start-server
: Runs production serverps-server
: Shows the process number of the active serverstop-server
: Kills the running server instance (in case the port has not been released)migrate
: Run migrations (this is automatically run on dev-server startup)migrate-make migration-name
: Create a new migration filemigrate-rollback
: Rollback latest migration
- Unit tests: run
bun test
while the dev server is running
- Source image (bank card): 52 x 34 px = 208 x 136 px @4x
Each expense has a sum stored in DB table expenses.sum
, and a corresponding
division as rows in expense_division
.
Expense sum is always non-negative.
For each expense_division.expense_id
, the sum sum(expense_division.sum)
equals 0
.
There are three types of expenses: expense
, income
, and transfer
.
expense
: user has purchased something. The sumsum(expense.sum)
forexpense.type = expense
gives the total cost of the registered expenses. Eachexpense
is divided intocost
s andbenefit
s:cost
: tracks who has paid for the expensebenefit
: tracks who benefits from the purchase
income
: user has received income. The sumsum(expense.sum)
forexpense.type = income
gives the total income of the registered expenses. Eachincome
is divided intoincome
s andsplit
s:income
: tracks who has received the moneysplit
: tracks who should benefit from the money
transfer
: money is transferred within the group. These expenses do not contribute to total cost or income, but they do affect user balance. Eachtransfer
is divided intotransferor
s andtransferee
s:transferor
: tracks who has transferred the moneytransferee
: tracks who has received the money
- For each expense with
expense.type = expense
:- The sum of division rows with
expense_division.type = cost
must equal-expense.sum
- The sum of division rows with
expense_division.type = benefit
must equalexpense.sum
- The sum of division rows with
- For each expense with
expense.type = income
:- The sum of division rows with
expense_division.type = income
must equalexpense.sum
- The sum of division rows with
expense_division.type = split
must equal-expense.sum
- The sum of division rows with
- For each expense with
expense.type = transfer
:- The sum of division rows with
expense_division.type = transferor
must equal-expense.sum
- The sum of division rows with
expense_division.type = transferee
must equalexpense.sum
- The sum of division rows with
For user u
with id u.id
, we define user value
as the
sum sum(expense_division.sum)
of all division rows
with expense_division.user_id = u.id
.
A positive user value
means that the user has gained more benefit than losses from the
registered expenses, and a negative value means that the user has paid for more than what
he has benefitted.
Thus, we further define user balance
to equal user value
negated, so that
user balance
means (semantically) what the user's current balance is (in regards to the
registered entries); a positive user balance
means that the user is owed money, and
a negative user balance
means that the user is behind the budget and should pay for
shared expenses.