-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
71 lines (65 loc) · 2.55 KB
/
.env.example
File metadata and controls
71 lines (65 loc) · 2.55 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# =============================================================================
# LLM Provider Keys
# =============================================================================
OPENAI_API_KEY=
GROQ_API_KEY=
ANTHROPIC_API_KEY=
PERPLEXITY_API_KEY=
GOOGLE_API_KEY=
CEREBRAS_API_KEY=
OPENROUTER_API_KEY=
# =============================================================================
# Webhook Secrets (Examples)
# =============================================================================
# Secret used for verifying GitHub webhooks (HMAC SHA-256)
GITHUB_TOKEN=
GITHUB_WEBHOOK_SECRET=
# =============================================================================
# Database Configuration
# =============================================================================
# DB_HOST=localhost
# DB_PORT=5432
# DB_USER=postgres
# DB_PASSWORD=postgres
# DB_NAME=compozy
# APP_POSTGRES_IMAGE=pgvector/pgvector:0.8.1-pg16
# When upgrading from PostgreSQL 15: create a backup, run ALTER EXTENSION pgvector UPDATE to match pg16 support,
# apply application migrations, and validate on staging before production rollout.
# =============================================================================
# Redis Configuration
# =============================================================================
# REDIS_HOST=localhost
# REDIS_PORT=6379
# REDIS_PASSWORD=redis_secret
# REDIS_VERSION=8.2-alpine
# # Memory configuration for Redis
# REDIS_MAXMEMORY=512mb
# REDIS_MAXMEMORY_POLICY=allkeys-lru
# =============================================================================
# Temporal Database Configuration
# =============================================================================
# TEMPORAL_DB_HOST=localhost
# TEMPORAL_DB_PORT=5433
# TEMPORAL_DB_USER=temporal
# TEMPORAL_DB_PASSWORD=temporal
# TEMPORAL_DB_NAME=temporal
# =============================================================================
# Temporal Configuration
# =============================================================================
# TEMPORAL_POSTGRESQL_VERSION=15-alpine
# TEMPORAL_VERSION=latest
# TEMPORAL_UI_VERSION=latest
# TEMPORAL_ADMINTOOLS_VERSION=latest
# TEMPORAL_HOST=localhost
# TEMPORAL_PORT=7233
# TEMPORAL_UI_PORT=8080
# TEMPORAL_NAMESPACE=default
# =============================================================================
# MCP Proxy Configuration
# =============================================================================
# MCP_PROXY_MODE=standalone
# MCP_PROXY_URL=http://localhost:6001
# MCP_USE_PROXY=true
# MCP_PROXY_HOST=0.0.0.0
# MCP_PROXY_PORT=6001
# MCP_PROXY_BASE_URL=http://localhost:6001