1- # Uncomment according to src/lib/env.ts
1+ # =================================
2+ # REQUIRED SERVER ENVIRONMENT VARIABLES
3+ # =================================
4+ # Supabase service role key for admin operations
5+ SUPABASE_SERVICE_ROLE_KEY = your_supabase_service_role_key
26
3- # KV_URL=
4- # KV_REST_API_READ_ONLY_TOKEN=
5- # KV_REST_API_TOKEN=
6- # KV_REST_API_URL=
7- # SUPABASE_SERVICE_ROLE_KEY=
8- # COOKIE_ENCRYPTION_KEY=
7+ # Key for encrypting cookies - must be at least 32 characters long
8+ COOKIE_ENCRYPTION_KEY = your_secure_cookie_encryption_key_here
99
10- BILLING_API_URL = https://billing.e2b.dev
10+ # KV database configuration
11+ KV_URL =
12+ KV_REST_API_READ_ONLY_TOKEN =
13+ KV_REST_API_TOKEN =
14+ KV_REST_API_URL =
1115
12- # NEXT_PUBLIC_POSTHOG_KEY=
13- # NEXT_PUBLIC_SUPABASE_URL=
14- # NEXT_PUBLIC_SUPABASE_ANON_KEY=
15- # NEXT_PUBLIC_STRIPE_BILLING_URL=
16+ # =================================
17+ # REQUIRED CLIENT ENVIRONMENT VARIABLES
18+ # =================================
19+ # Supabase URL and anon key for client-side operations
20+ NEXT_PUBLIC_SUPABASE_URL = https://your-project.supabase.co
21+ NEXT_PUBLIC_SUPABASE_ANON_KEY = your_supabase_anon_key
22+
23+ # API domain for your application
1624NEXT_PUBLIC_DEFAULT_API_DOMAIN = e2b.dev
1725
18- # Set to 1 to expose
19- NEXT_PUBLIC_EXPOSE_STORYBOOK = 0
20- NEXT_PUBLIC_SCAN = 0
21- NEXT_PUBLIC_MOCK_DATA = 0
26+ # =================================
27+ # OPTIONAL SERVER ENVIRONMENT VARIABLES
28+ # =================================
29+ # Billing API URL (Required if NEXT_PUBLIC_INCLUDE_BILLING=1)
30+ # BILLING_API_URL=https://billing.e2b.dev
31+
32+ # Vercel URL (automatically set in Vercel deployments)
33+ # VERCEL_URL=
34+
35+ # Development infrastructure API domain
36+ # DEVELOPMENT_INFRA_API_DOMAIN=
37+
38+ # Sentry authentication token for error reporting
39+ # SENTRY_AUTH_TOKEN=
40+
41+ # ZeroBounce API key for email validation
42+ # ZEROBOUNCE_API_KEY=
43+
44+ # =================================
45+ # OPTIONAL CLIENT ENVIRONMENT VARIABLES
46+ # =================================
47+ # PostHog analytics key
48+ # NEXT_PUBLIC_POSTHOG_KEY=
49+
50+ # Enable billing features: set to 1 to enable
51+ # When enabled, both BILLING_API_URL and NEXT_PUBLIC_STRIPE_BILLING_URL must be provided
52+ # NEXT_PUBLIC_INCLUDE_BILLING=0
53+
54+ # Stripe billing URL (Required if NEXT_PUBLIC_INCLUDE_BILLING=1)
55+ # NEXT_PUBLIC_STRIPE_BILLING_URL=https://billing.stripe.com/your-path
56+
57+ # Set to 1 to expose Storybook
58+ # NEXT_PUBLIC_EXPOSE_STORYBOOK=0
59+
60+ # Set to 1 to enable scanning
61+ # NEXT_PUBLIC_SCAN=0
2262
23- # For applying migrations
24- # POSTGRES_CONNECTION_STRING=
63+ # Set to 1 to use mock data
64+ # NEXT_PUBLIC_MOCK_DATA=0
0 commit comments