-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (47 loc) · 1.89 KB
/
.env.example
File metadata and controls
52 lines (47 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# =============================================================================
# LATRACE Memory Stack - Example Environment File
# =============================================================================
# Copy this file to `.env` before running:
# docker compose up --build
#
# Notes:
# - For the bundled local compose stack, Qdrant and Neo4j do not require
# additional auth beyond the values below.
# - `QDRANT_API_KEY` is optional and only needed when connecting to a protected
# external Qdrant instance.
# - The single-image `docker run` flow also needs `QDRANT_HOST`, `QDRANT_PORT`,
# and `NEO4J_URI` to point at external dependencies.
# =============================================================================
# -----------------------------------------------------------------------------
# Dependency endpoints
# -----------------------------------------------------------------------------
# For local `docker compose`, keep these defaults unchanged.
QDRANT_HOST=qdrant
QDRANT_PORT=6333
NEO4J_URI=bolt://neo4j:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=neo4j_password
# Optional: only required for protected external Qdrant deployments.
QDRANT_API_KEY=
# -----------------------------------------------------------------------------
# LLM / embeddings
# -----------------------------------------------------------------------------
# With the default memory config, text embeddings and extraction expect an
# OpenRouter key.
LLM_PROVIDER=openrouter
OPENROUTER_API_KEY=
# Optional direct-provider keys
OPENAI_API_KEY=
GOOGLE_API_KEY=
ZHIPUAI_API_KEY=
DASHSCOPE_API_KEY=
# -----------------------------------------------------------------------------
# Optional API auth
# -----------------------------------------------------------------------------
MEMORY_API_AUTH_ENABLED=false
MEMORY_API_TOKEN=
MEMORY_API_TENANT_ID=
MEMORY_API_JWKS_URL=
MEMORY_API_JWT_AUD=
MEMORY_API_JWT_ISS=
MEMORY_API_SIGNING_SECRET=