feat: Add Python-native dashboard and main.py cleanup, refs NOISSUE

This commit is contained in:
2026-04-04 20:58:07 +02:00
parent 4430348168
commit 7f12034bff
4 changed files with 387 additions and 15 deletions

View File

@@ -15,8 +15,7 @@ from agents.database_manager import DatabaseManager
from config import settings
from datetime import datetime
import json
from jinja2 import Template
app = FastAPI(
title="AI Software Factory",
description="Automated software generation service with PostgreSQL audit trail",
@@ -55,6 +54,7 @@ async def root():
"/audit/actions/{project_id}": "Get project user actions",
"/audit/history": "Get project history",
"/audit/history/{project_id}": "Get project history",
"/dashboard": "Dashboard",
"/init-db": "Initialize database",
}
}