Add SQLite passive income dashboard with Excel import and deployment tools

This commit is contained in:
kai
2026-09-09 08:46:27 +02:00
parent 729a13bfca
commit afc6f74f36
27 changed files with 1109 additions and 67 deletions
+10
View File
@@ -0,0 +1,10 @@
from fastapi import APIRouter, Request
from services.income_service import dashboard, list_entries
from views import render
router = APIRouter()
@router.get('/')
def index(request: Request):
return render(request, 'index.html', {'stats': dashboard(), 'entries': list_entries(limit=20)})