MoneyMgr/README.md
Pierre HUBERT ff17829668
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Prepare for release
2025-05-15 19:59:12 +02:00

786 B

MoneyMgr

Build Status

Open Source web-based personal expenses tool.

Setup dev env

  1. Install prerequisites:

    1. docker
    2. docker-compose
    3. rust
    4. node
  2. Start services

cd moneymgr_backend
mkdir -p storage/{db,redis-data,redis-conf,minio}
docker compose up
  1. Install Diesel CLI:
sudo apt install libpq5 libpq-dev pkg-config libssl-dev cmake
cargo install diesel_cli --no-default-features --features postgres
  1. Initialize database:
diesel migration run

Note: You can access the database directly using this command:

PGPASSWORD=pass psql -h localhost -p 5432 -U user -d moneymgr