-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.production.example
More file actions
63 lines (50 loc) · 1.97 KB
/
.env.production.example
File metadata and controls
63 lines (50 loc) · 1.97 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
# Production Environment Variables
# Database Configuration
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
# Authentication (Clerk)
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_live_your-clerk-publishable-key
CLERK_SECRET_KEY=sk_live_your-clerk-secret-key
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/auth/login
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/auth/register
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/dashboard
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/welcome
# AI Services
OPENAI_API_KEY=sk-your-openai-api-key
GOOGLE_AI_API_KEY=AIza-your-google-ai-api-key
# External APIs
COURTLISTENER_API_KEY=your-courtlistener-api-key
# Site Configuration
NEXT_PUBLIC_SITE_URL=https://judgefinder.io
NEXT_PUBLIC_APP_URL=https://judgefinder.io
NEXT_PUBLIC_APP_NAME=JudgeFinder Platform
# Admin Configuration
ADMIN_USER_IDS=user_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# Security Keys - Generate in Netlify Dashboard
SYNC_API_KEY=CONFIGURE_IN_NETLIFY
CRON_SECRET=CONFIGURE_IN_NETLIFY
COURTLISTENER_WEBHOOK_SECRET=CONFIGURE_IN_NETLIFY
COURTLISTENER_WEBHOOK_VERIFY_TOKEN=CONFIGURE_IN_NETLIFY
SESSION_SECRET=CONFIGURE_IN_NETLIFY
# Rate Limiting
UPSTASH_REDIS_REST_URL=CONFIGURE_IN_NETLIFY
UPSTASH_REDIS_REST_TOKEN=CONFIGURE_IN_NETLIFY
# Analytics
NEXT_PUBLIC_GA_MEASUREMENT_ID=CONFIGURE_IN_NETLIFY
NEXT_PUBLIC_POSTHOG_KEY=CONFIGURE_IN_NETLIFY
NEXT_PUBLIC_POSTHOG_HOST=https://app.posthog.com
NEXT_PUBLIC_CLARITY_PROJECT_ID=CONFIGURE_IN_NETLIFY
# Node Environment
NODE_ENV=production
# Build Configuration
# SKIP_AUTH_BUILD removed to enable Clerk authentication
# ============================================
# ⚠️ IMPORTANT SECURITY NOTICE
# ============================================
# This file should NEVER contain real API keys!
# All sensitive values must be configured directly
# in the Netlify Dashboard under Environment Variables.
#
# See docs/NETLIFY_ENV_SETUP.md for setup instructions.
# ============================================