-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathexample.env
More file actions
36 lines (27 loc) · 1.11 KB
/
Copy pathexample.env
File metadata and controls
36 lines (27 loc) · 1.11 KB
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
# Environment template.
# Put most runtime behavior in config.yaml, specialists.yaml, and mcp.yaml.
# Keep credentials and values interpolated by Docker Compose or YAML here.
# Required for Docker Compose because docker-compose.yml bind-mounts this path.
# Use an absolute host path, for example /Users/alice/manifold-workdir.
WORKDIR=""
OPENAI_API_KEY=""
ANTHROPIC_API_KEY=""
GOOGLE_LLM_API_KEY=""
AUTH_CLIENT_ID=""
AUTH_CLIENT_SECRET=""
# Optional PostgreSQL DSN. Leave empty for the default SQLite backend.
# Set this and configure databases.backend=postgres when you want Postgres.
DATABASE_URL=""
# Required when SQLite or Postgres stores specialist/MCP secrets in the DB.
# Generate once with: openssl rand -base64 32
# Keep the same value for backup/restore; losing it makes encrypted DB secrets unrecoverable.
MANIFOLD_SECRETS_KEY=""
# Optional persistent telemetry backend. Leave empty for process-local telemetry
# with no ClickHouse or OpenTelemetry Collector.
CLICKHOUSE_DSN=""
EMBED_API_KEY=""
ACME_MCP_TOKEN=""
SPECIALIST_CODER_API_KEY=""
SPECIALIST_RESEARCH_API_KEY=""
GITHUB_MCP_TOKEN=""
BRAVE_SEARCH_API_KEY=""