43bbcece7a
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>
34 lines
760 B
YAML
34 lines
760 B
YAML
spring:
|
|
application:
|
|
name: vaessl
|
|
config:
|
|
import:
|
|
- "optional:file:.env.local[.properties]"
|
|
- "optional:file:backend/.env.local[.properties]"
|
|
- "optional:file:vaessl/backend/.env.local[.properties]"
|
|
datasource:
|
|
url : ${DB_URL}
|
|
username: ${DB_USERNAME}
|
|
password: ${DB_PASSWORD}
|
|
driver-class-name: ${PG_DRIVER_CLASS_NAME}
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: create-drop
|
|
show-sql: true
|
|
ai:
|
|
openai:
|
|
base-url: ${OPENAI_BASE_URL}
|
|
api-key: ${OPENAI_KEY}
|
|
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/}
|