mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +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
|
|
@ -536,6 +536,70 @@ const APP_CONFIGS = [
|
|||
PUBLIC_MANA_CORE_AUTH_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
},
|
||||
},
|
||||
|
||||
// Moodlit Backend (NestJS)
|
||||
{
|
||||
path: 'apps/moodlit/apps/backend/.env',
|
||||
vars: {
|
||||
NODE_ENV: () => 'development',
|
||||
PORT: (env) => env.MOODLIT_BACKEND_PORT || '3012',
|
||||
DATABASE_URL: (env) => env.MOODLIT_DATABASE_URL,
|
||||
MANA_CORE_AUTH_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
DEV_BYPASS_AUTH: () => 'true',
|
||||
DEV_USER_ID: (env) => env.DEV_USER_ID || '00000000-0000-0000-0000-000000000000',
|
||||
CORS_ORIGINS: (env) => env.CORS_ORIGINS,
|
||||
},
|
||||
},
|
||||
|
||||
// Moodlit Mobile (Expo)
|
||||
{
|
||||
path: 'apps/moodlit/apps/mobile/.env',
|
||||
vars: {
|
||||
EXPO_PUBLIC_BACKEND_URL: (env) => `http://localhost:${env.MOODLIT_BACKEND_PORT || '3012'}`,
|
||||
EXPO_PUBLIC_MANA_CORE_AUTH_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
},
|
||||
},
|
||||
|
||||
// Moodlit Web (SvelteKit)
|
||||
{
|
||||
path: 'apps/moodlit/apps/web/.env',
|
||||
vars: {
|
||||
PUBLIC_BACKEND_URL: (env) => `http://localhost:${env.MOODLIT_BACKEND_PORT || '3012'}`,
|
||||
PUBLIC_MANA_CORE_AUTH_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
},
|
||||
},
|
||||
|
||||
// Finance Backend (NestJS)
|
||||
{
|
||||
path: 'apps/finance/apps/backend/.env',
|
||||
vars: {
|
||||
NODE_ENV: () => 'development',
|
||||
PORT: (env) => env.FINANCE_BACKEND_PORT || '3019',
|
||||
DATABASE_URL: (env) => env.FINANCE_DATABASE_URL,
|
||||
MANA_CORE_AUTH_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
DEV_BYPASS_AUTH: () => 'true',
|
||||
DEV_USER_ID: (env) => env.DEV_USER_ID || '00000000-0000-0000-0000-000000000000',
|
||||
CORS_ORIGINS: (env) => env.CORS_ORIGINS,
|
||||
},
|
||||
},
|
||||
|
||||
// Finance Mobile (Expo)
|
||||
{
|
||||
path: 'apps/finance/apps/mobile/.env',
|
||||
vars: {
|
||||
EXPO_PUBLIC_BACKEND_URL: (env) => `http://localhost:${env.FINANCE_BACKEND_PORT || '3019'}`,
|
||||
EXPO_PUBLIC_MANA_CORE_AUTH_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
},
|
||||
},
|
||||
|
||||
// Finance Web (SvelteKit)
|
||||
{
|
||||
path: 'apps/finance/apps/web/.env',
|
||||
vars: {
|
||||
PUBLIC_BACKEND_URL: (env) => `http://localhost:${env.FINANCE_BACKEND_PORT || '3019'}`,
|
||||
PUBLIC_MANA_CORE_AUTH_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
function main() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue