Vault helps you track net worth, cash flow, and expenses in a simple and effective way. Vault is an evolving project, with planned features like multi-currency support, real-time exchange rates, and stock tracking.
- Key Features
- Quick Start
- Other scripts
- Tech Stack
- Screenshots
- Reactive Architecture
- Who's Behind This?
- License
- Net Worth Tracking – A simple way to see assets and liabilities in one place.
- Cash Flow Insights – A glance at how money moves over time.
- Expense Tracking – A lightweight way to keep an eye on spending.
- Multi-Currency Support – Potential support for different currencies.
- Stock & Crypto Tracking – Basic market tracking for stocks and crypto.
- Slick UI – A clean and modern interface.
- Dark Mode – Optimized for both light and dark themes.
- Multi-User – Log in using Discord and manage your own finances.
Make sure you have the following installed:
- 🏗️ Node.js (Required: v22.13.1)
- 📦 npm (Vault uses
npm@10.9.2
) - 🐳 Docker (If you want to use the included DB spin up script)
Here’s what you need to do to get started quickly:
-
Clone the project
git clone https://github.com/oxcened/vault.git cd vault
-
Create a
.env
file using the provided example:cp .env.example .env
-
Generate an authentication secret:
npx auth secret
Open
.env
, locate theAUTH_SECRET
field, and paste the generated secret. -
Set up Discord authentication:
- Go to the Discord Developer Portal.
- Create a new application.
- Under OAuth2, add a redirect URI matching:
http://localhost:3000/api/auth/callback/discord
- Copy the Client ID and Client Secret from the OAuth2 settings.
- In your
.env
file, paste them inAUTH_DISCORD_ID
andAUTH_DISCORD_SECRET
.
-
Configure the database:
- Fill
DATABASE_URL
andDATABASE_DIRECT_URL
with your database connection details. - If you don’t have a database, run:
(Requires Docker to be installed)
./start-database.sh
- Fill
-
Install dependencies:
npm install
-
Apply migrations and generate the Prisma client:
npm run db:generate
-
Generate TypedSQL queries:
npm run db:sql
-
Run the app:
npm run dev
Now, you’re ready to start using Vault!
Check for linting errors:
npm run lint
Format code:
npm run format:write
To build and start the production server:
npm run build
npm run start
Vault is built with the T3 Stack, making it scalable and efficient.
- TypeScript – Ensuring type safety.
- Next.js – Full-stack framework with SSR and API routes.
- NextAuth.js – Secure authentication and session management.
- Prisma – ORM for database management.
- Tailwind CSS – Modern styling with utility classes.
- tRPC – Type-safe API communication.
- Radix UI with shadcn/ui components.
- Lucide Icons for sleek and simple icons.
Here’s a quick look at Vault in action:
This app uses a fully reactive, event-driven architecture to keep derived financial data accurate and efficient. Here's how it works:
Whenever core data changes — like assets, debts, transactions, stock prices, or exchange rates — the system emits events that represent facts about what happened. These events are handled by dedicated listeners that determine whether and how to trigger updates to derived data.
Example event types:
asset:updated
debt:updated
transaction:updated
exchangeRate:updated
stockPrice:updated
Derived data (like Net Worth or Cash Flow) is not recomputed blindly. Instead:
- Shared data changes (e.g. stock prices, exchange rates) trigger recomputes only for affected snapshots, based on a
DerivedDataDependency
table. - User-specific changes (assets, debts, transactions) use smart recompute functions like:
recomputeNetWorthForUserFrom(...)
recomputeCashFlowForUserFrom(...)
These functions only recompute data from the earliest relevant timestamp forward.
Every derived data snapshot tracks the specific inputs it used:
- Exchange rates
- Stock prices
This allows:
- ✅ Precise invalidation when inputs change
- ✅ No over-computation
- ✅ Full traceability of what influenced what
Built by Alen Ajam, who made this for personal use and decided to share it. No guarantees, but if it works for you, great!
- GitHub: oxcened
- Email: hello@alenajam.dev
- Website: alenajam.dev
Vault is open-source and licensed under the MIT License.
Want to contribute? PRs are always welcome!