-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
42 lines (35 loc) · 1.67 KB
/
.env.example
File metadata and controls
42 lines (35 loc) · 1.67 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
# ═══════════════════════════════════════════════════════
# YOU FILL THESE IN
# ═══════════════════════════════════════════════════════
# OpenAI
OPENAI_API_KEY=
# Redis Cloud
REDIS_HOST=
REDIS_PORT=
REDIS_PASSWORD=
REDIS_SSL=true
# Context Surfaces – admin key from the cloud console
CTX_ADMIN_KEY=
# ═══════════════════════════════════════════════════════
# AUTO-POPULATED (by make setup-surface / make generate-data)
# ═══════════════════════════════════════════════════════
MCP_AGENT_KEY=
CTX_SURFACE_ID=
CTX_REDIS_INSTANCE_ID=
DEMO_USER_ID=
DEMO_USER_NAME=
DEMO_USER_EMAIL=
DEMO_DOMAIN=reddash
# ═══════════════════════════════════════════════════════
# DEFAULTS – change only if needed
# ═══════════════════════════════════════════════════════
OPENAI_CHAT_MODEL=gpt-4o
OPENAI_EMBEDDING_MODEL=text-embedding-3-small
REDIS_USERNAME=default
REDIS_DB=0
CTX_SURFACE_NAME="Reddash Delivery Surface"
CTX_AGENT_NAME="Reddash Delivery Agent"
REDIS_INSTANCE_NAME="Reddash Redis Cloud"
CTX_FORCE_CREATE=false
BACKEND_PORT=8040
FRONTEND_PORT=3040