Files
openclaw/.env.example
2026-03-01 17:44:19 +03:00

14 lines
417 B
Plaintext

# DoctorBot memory restore (Postgres)
# Copy to .env (or set MEMORY_RESTORE_ENV_FILE) and fill with real values.
# Option A: full connection URL
# MEMORY_DB_URL=postgresql://user:password@host:5432/dbname?sslmode=prefer
# Option B: discrete connection fields
MEMORY_DB_HOST=127.0.0.1
MEMORY_DB_PORT=5432
MEMORY_DB_NAME=doctorbot
MEMORY_DB_USER=doctorbot_reader
MEMORY_DB_PASSWORD=change_me
MEMORY_DB_SSLMODE=prefer