mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:41:09 +02:00
✨ feat(finance): add complete finance app with budget tracking
- Backend (NestJS, Port 3019): - Account management with multi-currency support - Categories with income/expense types and seed functionality - Transaction tracking with comprehensive filters - Monthly budgets with spending tracking - Transfers between accounts - Reports (dashboard, trends, category breakdown) - User settings (currency, locale, date format) - Exchange rates with ECB API integration - Bank sync architecture prepared (connected_accounts) - Frontend (SvelteKit, Port 5189): - Dashboard with totals, budget progress, recent transactions - Transaction list with filters - Account management - Category management - Budget tracking per month - Reports & trends - Settings page - Auth pages (login, register, forgot-password) - Shared package with types, constants, utilities - Environment configuration for backend, web, mobile 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
bbe540c3f1
commit
ad0051a8fc
109 changed files with 10502 additions and 0 deletions
|
|
@ -223,6 +223,13 @@ CLOCK_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/clock
|
|||
TODO_BACKEND_PORT=3018
|
||||
TODO_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/todo
|
||||
|
||||
# ============================================
|
||||
# MOODLIT PROJECT
|
||||
# ============================================
|
||||
|
||||
MOODLIT_BACKEND_PORT=3012
|
||||
MOODLIT_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/moods
|
||||
|
||||
# ============================================
|
||||
# MANA-GAMES PROJECT
|
||||
# ============================================
|
||||
|
|
@ -244,3 +251,10 @@ MANA_GAMES_AZURE_OPENAI_DEPLOYMENT=gpt-4o
|
|||
MANA_GAMES_GITHUB_TOKEN=your_github_token_here
|
||||
MANA_GAMES_GITHUB_OWNER=tillschneider
|
||||
MANA_GAMES_GITHUB_REPO=mana-games
|
||||
|
||||
# ============================================
|
||||
# FINANCE PROJECT
|
||||
# ============================================
|
||||
|
||||
FINANCE_BACKEND_PORT=3019
|
||||
FINANCE_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/finance
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue