feat(web): redesign provider interface (#25)

This commit is contained in:
Quincy
2026-02-03 16:42:43 +08:00
committed by GitHub
parent d775c6df6d
commit e6fd287b4d
45 changed files with 1647 additions and 480 deletions
+7 -6
View File
@@ -10,12 +10,12 @@ addr = ":8080"
## Admin
[admin]
username = "admin"
password = "change-your-password-here"
email = "you@example.com"
password = "123456"
email = "demo@demo.com"
## Auth configuration
[auth]
jwt_secret = "your-jwt-secret-key-change-in-production-use-long-random-string"
jwt_secret = "YZq8kXrW5dFpNt9mLxQvHbRjKsMnOePw"
jwt_expires_in = "168h"
## Containerd configuration
@@ -31,13 +31,14 @@ data_mount = "/data"
## Postgres configuration
[postgres]
host = "127.0.0.1"
host = "localhost"
port = 5432
user = "postgres"
password = ""
database = "memoh"
password = "1234"
database = "postgres"
sslmode = "disable"
## Qdrant configuration
[qdrant]
base_url = "http://127.0.0.1:6334"