feat: Add database explorer page with SQLite management

- Add /database page with table explorer, query executor and stats
- Implement MCP tools: list_tables, get_table_schema, get_table_data,
  get_database_stats, execute_query
- Add database API endpoints with security (SELECT only)
- Add database icon to toolbar
This commit is contained in:
2026-02-13 06:43:52 -06:00
parent 8a017db777
commit 97ef49aea4
7 changed files with 1357 additions and 2 deletions

View File

@@ -33,6 +33,11 @@ const router = createRouter({
path: '/themes',
name: 'themes',
component: () => import('../pages/ThemesPage.vue')
},
{
path: '/database',
name: 'database',
component: () => import('../pages/DatabasePage.vue')
}
]
})