-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
29 lines (23 loc) · 886 Bytes
/
env.example
File metadata and controls
29 lines (23 loc) · 886 Bytes
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
# Convex
CONVEX_DEPLOYMENT=dev:your-deployment
VITE_CONVEX_URL=https://your-deployment.convex.cloud
# Clerk
VITE_CLERK_PUBLISHABLE_KEY=pk_test_...
CLERK_SECRET_KEY=sk_test_...
CLERK_WEBHOOK_SECRET=whsec_...
# Encryption (generate with: node scripts/generate-encryption-key.js)
ENCRYPTION_MASTER_KEY=<64-char-hex-string>
# App
VITE_APP_URL=http://localhost:3000
NODE_ENV=development
# Internal Monitoring (Optional)
# Tracks StackDock's own errors - separate from dock adapters that display external monitoring data
# Supported providers: sentry, posthog (coming soon), newrelic (coming soon), none
VITE_MONITORING_PROVIDER=none
VITE_MONITORING_ENABLED=false
# Sentry Configuration (if using Sentry provider)
VITE_SENTRY_DSN=https://...@sentry.io/...
VITE_ENVIRONMENT=development
# Convex Backend Monitoring (Optional)
MONITORING_ENABLED=false
SENTRY_DSN=https://...@sentry.io/...