-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy path.env.example
More file actions
87 lines (66 loc) · 2.4 KB
/
.env.example
File metadata and controls
87 lines (66 loc) · 2.4 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
### =================================
### REQUIRED SERVER ENVIRONMENT VARIABLES
### =================================
### Supabase service role key for admin operations
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key
### Domain for the E2B cluster
# Resolves Infrastructure and Dashboard API + E2B SDK configuration
NEXT_PUBLIC_E2B_DOMAIN=e2b.dev
### KV database configuration
KV_REST_API_TOKEN=
KV_REST_API_URL=
### =================================
### REQUIRED CLIENT ENVIRONMENT VARIABLES
### =================================
### Supabase URL and anon key for client-side operations
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
### =================================
### OPTIONAL SERVER ENVIRONMENT VARIABLES
### =================================
### Billing API URL (Required if NEXT_PUBLIC_INCLUDE_BILLING=1)
# BILLING_API_URL=https://billing.e2b.dev
### Vercel URL (automatically set in Vercel deployments)
# VERCEL_URL=
### Development infrastructure API domain
# DEVELOPMENT_INFRA_API_DOMAIN=
### OTEL Service Name
# OTEL_SERVICE_NAME=
### ZeroBounce API key for email validation
# ZEROBOUNCE_API_KEY=
### Plain API key for customer support integration
# (Required if NEXT_PUBLIC_INCLUDE_REPORT_ISSUE=1)
# PLAIN_API_KEY=
### Loki Configuration
# LOKI_SERVICE_NAME=
# LOKI_HOST=
# LOKI_USERNAME=
# LOKI_PASSWORD=
### OTEL Configuration
# OTEL_SERVICE_NAME=
# OTEL_EXPORTER_OTLP_ENDPOINT=
# OTEL_EXPORTER_OTLP_PROTOCOL=
# OTEL_EXPORTER_OTLP_HEADERS=
# OTEL_TRACES_EXPORTER=
# OTEL_METRICS_EXPORTER=
# OTEL_LOGS_EXPORTER=
# OTEL_NODE_RESOURCE_DETECTORS=
# OTEL_RESOURCE_ATTRIBUTES=
### =================================
### OPTIONAL CLIENT ENVIRONMENT VARIABLES
### =================================
### PostHog analytics key
# NEXT_PUBLIC_POSTHOG_KEY=
### Enable billing features: set to 1 to enable
### When enabled, both BILLING_API_URL and NEXT_PUBLIC_STRIPE_BILLING_URL must be provided
# NEXT_PUBLIC_INCLUDE_BILLING=0
### Enable report issue feature: set to 1 to enable
### When enabled, PLAIN_API_KEY must be provided
# NEXT_PUBLIC_INCLUDE_REPORT_ISSUE=0
### Enable dashboard status indicator feature: set to 1 to enable
### When enabled, the E2B status is read from https://status.e2b.dev
# NEXT_PUBLIC_INCLUDE_STATUS_INDICATOR=0
### Set to 1 to use mock data
# NEXT_PUBLIC_MOCK_DATA=0
### Set to 1 to enable verbose logging
# NEXT_PUBLIC_VERBOSE=0