add session-based connection management and React dashboard

Backend: adds JDBC session support, login/status/logout endpoints, and
new DTOs (AuthResponse, ConnectionStatusResponse, LoginResult). Frontend
replaces the Vite boilerplate with a Dashboard, ServiceCard, and
ConnectModal backed by a typed API client.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-10 03:30:36 +02:00
parent 0127706262
commit 43bbcece7a
30 changed files with 1307 additions and 350 deletions
@@ -0,0 +1,12 @@
{"properties": [
{
"name": "spring.session.store-type",
"type": "java.lang.String",
"description": "A description for 'spring.session.store-type'"
},
{
"name": "vaessl.frontend-url",
"type": "java.lang.String",
"description": "A description for 'vaessl.frontend-url'"
}
]}
@@ -22,6 +22,12 @@ spring:
chat:
options:
model: gpt-4o-mini
session:
store-type: jdbc
jdbc:
initialize-schema: always
server:
servlet:
context-path: /api
vaessl:
frontend-url: ${FRONTEND_URL:http://192.168.1.208:5173/}