forked from memohai/Memoh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml.example
More file actions
58 lines (48 loc) · 920 Bytes
/
config.toml.example
File metadata and controls
58 lines (48 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
## Service configuration
[log]
level = "info"
format = "text"
[server]
# HTTP listen address
addr = ":8080"
## Admin
[admin]
username = "admin"
password = "123456"
email = "demo@demo.com"
## Auth configuration
[auth]
jwt_secret = "YZq8kXrW5dFpNt9mLxQvHbRjKsMnOePw"
jwt_expires_in = "168h"
## Containerd configuration
[containerd]
socket_path = "/run/containerd/containerd.sock"
namespace = "default"
[mcp]
image = "docker.io/library/memoh-mcp:dev"
snapshotter = "overlayfs"
data_root = "data"
data_mount = "/data"
## Postgres configuration
[postgres]
host = "localhost"
port = 5432
user = "postgres"
password = "1234"
database = "demo"
sslmode = "disable"
## Qdrant configuration
[qdrant]
base_url = "http://127.0.0.1:6334"
api_key = ""
collection = "memory"
timeout_seconds = 10
## Agent Gateway
[agent_gateway]
host = "127.0.0.1"
port = 8081
server_addr = ":8080"
## Web
[web]
host = "127.0.0.1"
port = 8082