27bb8df513fa4d434adc061b07be019d4034c7df
- Strengthen prompt with required observations (savings rate, spend-to-income, top category, anomaly), dollar-formatted amounts, and pay schedule context - Preserve recommendation array structure; store as JSON array string in DB - Render recommendations as numbered cards with icons in home dashboard - Add spend-vs-income progress bar and category flow mini bar chart - Fix test assertions for new JSON array recommendation format Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Monthy Tracker
Private monthly expense tracking with local-first storage, offline category suggestions, and offline monthly insights via Ollama.
Local app
- Install dependencies:
npm install
- Create env config from
.env.exampleand keep your local runtime settings:
cp .env.example .env
- Apply migrations and start the app:
npx prisma migrate deploy
npm run dev
- Keep
Ollamarunning with the configured model:
ollama serve
ollama pull qwen3.5:9b
Docker Compose
Run the app in Docker while keeping Ollama on the host:
docker compose up --build
This compose stack will:
- start only the Next.js app on
http://localhost:3000 - keep SQLite data in a named Docker volume
- connect to host
Ollamathroughhost.docker.internal
Before running Docker Compose, make sure host Ollama is already up:
ollama serve
ollama pull qwen3.5:9b
If you run the app outside Docker, keep using:
OLLAMA_URL=http://127.0.0.1:11434/
In-app helpers
- Use the dashboard runtime panel to refresh Ollama status.
- If the configured model is missing, use
Pull configured modelfrom the UI. - Use
Download backupto export the current SQLite database file.
Environment
DATABASE_URL- Prisma SQLite connection stringOLLAMA_URL- Ollama base URL; in Docker Compose this defaults tohttp://host.docker.internal:11434/OLLAMA_MODEL- selected model tag, defaultqwen3.5:9b
Description
Languages
TypeScript
98.8%
CSS
0.4%
Dockerfile
0.4%
JavaScript
0.4%