Files
Memoh/config.toml.example
T

55 lines
981 B
TOML

## Service configuration
[log]
level = "info"
format = "text"
[server]
# HTTP listen address
addr = ":8080"
## Admin
[admin]
username = "admin"
password = "change-your-password-here"
email = "you@example.com"
## Auth configuration
[auth]
jwt_secret = "your-jwt-secret-key-change-in-production-use-long-random-string"
jwt_expires_in = "168h"
## Containerd configuration
[containerd]
socket_path = "/run/containerd/containerd.sock"
namespace = "default"
[mcp]
busybox_image = "docker.io/library/busybox:latest"
snapshotter = "overlayfs"
data_root = "data"
data_mount = "/data"
## Postgres configuration
[postgres]
host = "127.0.0.1"
port = 5432
user = "postgres"
password = ""
database = "memoh"
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
[brave]
api_key = ""
base_url = "https://api.search.brave.com/res/v1/"