-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.production.example
More file actions
36 lines (27 loc) · 1.1 KB
/
.env.production.example
File metadata and controls
36 lines (27 loc) · 1.1 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
# Example environment for a production-like ctxledger deployment.
OPENAI_API_KEY=replace-with-your-openai-api-key
CTXLEDGER_APP_NAME=ctxledger
CTXLEDGER_APP_VERSION=0.9.0
CTXLEDGER_ENV=production
CTXLEDGER_DATABASE_URL=postgresql://ctxledger:replace-with-a-strong-database-password@db.internal:5432/ctxledger
CTXLEDGER_DB_CONNECT_TIMEOUT_SECONDS=5
CTXLEDGER_TRANSPORT=http
CTXLEDGER_ENABLE_HTTP=true
CTXLEDGER_HOST=0.0.0.0
CTXLEDGER_PORT=8080
CTXLEDGER_HTTP_PATH=/mcp
CTXLEDGER_REQUIRE_AUTH=true
CTXLEDGER_AUTH_BEARER_TOKEN=replace-with-a-generated-strong-secret
CTXLEDGER_ENABLE_DEBUG_ENDPOINTS=false
CTXLEDGER_LOG_LEVEL=info
CTXLEDGER_LOG_STRUCTURED=true
CTXLEDGER_EMBEDDING_ENABLED=true
CTXLEDGER_EMBEDDING_PROVIDER=openai
CTXLEDGER_EMBEDDING_MODEL=text-embedding-3-small
CTXLEDGER_EMBEDDING_DIMENSIONS=1536
CTXLEDGER_DB_AGE_ENABLED=true
CTXLEDGER_DB_AGE_GRAPH_NAME=ctxledger_memory
CTXLEDGER_GRAFANA_ADMIN_USER=admin
CTXLEDGER_GRAFANA_ADMIN_PASSWORD=replace-with-a-generated-strong-password
CTXLEDGER_GRAFANA_POSTGRES_USER=ctxledger_grafana
CTXLEDGER_GRAFANA_POSTGRES_PASSWORD=replace-with-a-generated-strong-password