--- title: Richy created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, wealth-management, app-marathon3-batch-b] confidence: medium contested: false sources: [https://selfh.st/apps/?tag=wealth-management&app=richy] --- # 💰 Richy > Tracker de patrimoine personnel — actions, cryptos, immobilier, comptes bancaires, en privé. ## 📋 Informations Générales | Champ | Valeur | | :--- | :--- | | **Site web** | (community) | | **GitHub** | (community/Richy) | | **License** | MIT | | **Langage** | TypeScript (Next.js) | | **Étoiles GitHub** | <1k ⭐ | | **Catégorie** | [[cat-wealth-management\|Wealth Management]] | ## 📝 Description **Richy** est une application web moderne de **wealth management personnel** : dashboard net-worth, multi-comptes (banque, broker, crypto, immobilier, voiture), graphiques d'évolution, catégories custom. Différence vs **Ghostfolio**: Richy vise l'**agrégation grand public** (banques FR via Open Banking, immo, dettes) plus que le trading. Pour qui: particuliers FR/EU qui veulent un dashboard "patrimoine" self-hosted, avec un œil sur la vie privée financière. ## 🚀 Installation ### Docker Compose (recommandé) ```yaml version: '3.8' services: richy: image: ghcr.io/community/richy:latest container_name: richy restart: unless-stopped environment: - DATABASE_URL=postgres://richy:***@richy-db:5432/richy - NEXTAUTH_SECRET=changeMe volumes: - richy-data:/app/data labels: - traefik.enable=true - traefik.http.routers.richy.rule=Host(`richy.example.com`) - traefik.http.routers.richy.entrypoints=websecure - traefik.http.routers.richy.tls.certresolver=letsencrypt - traefik.http.services.richy.loadbalancer.server.port=3000 richy-db: image: postgres:16-alpine container_name: richy-db restart: unless-stopped environment: POSTGRES_USER: richy POSTGRES_PASSWORD: changeMe POSTGRES_DB: richy volumes: - richy-db:/var/lib/postgresql/data volumes: richy-data: richy-db: ``` ## 🔄 Alternatives ### Open Source - [[app-ghostfolio]] — Plus trading-focused, super moderne UI. - [[app-investbrain]] — Investissement + robo-advisor. - **Firefly III** — Tracker dépenses + patrimoine, mature. - **Maybe (open fork)** — Personal finance moderne. ### Propriétaires - **Mint / Credit Karma** — Fermé par Intuit en 2024. - **Bankin'** — FR, agrégateur bancaire. - **Powens** — Agrégateur FR pour fintechs. ## 🔐 Sécurité - **Données financières**: chiffrer le volume DB, backups offsite chiffrés. - **Auth**: 2FA obligatoire (TOTP). - **Reverse proxy HTTPS**: obligatoire. - **Open Banking**: tokens Powens/Bridge à stocker en secrets. ## 📚 Ressources - [GitHub](https://github.com/search?q=richy+wealth+management) - [Firefly III](https://www.firefly-iii.org/) (référence) ## Pages Liées - [[cat-wealth-management]] — Catégorie Wealth Management - [[app-ghostfolio]] — Concurrent trading-focused - [[recettes-docker-compose]] — Templates Docker