-
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) · 1.1 KB
/
env.example
File metadata and controls
29 lines (23 loc) · 1.1 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
# Environment Configuration
NODE_ENV=development
# Site URL Configuration
NEXT_PUBLIC_SITE_URL=http://localhost:3000
# Local Supabase Configuration (Development)
NEXT_PUBLIC_SUPABASE_URL=http://localhost:5430
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-supabase-anon-key
NEXT_PUBLIC_SUPABASE_REALTIMEURL=http://localhost:5430
NEXT_PUBLIC_SERVICE_ROLE_KEY=your-supabase-service-role-key
# Production Supabase Configuration (Production)
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-production-anon-key
SUPABASE_ROLE_KEY=your-production-service-role-key
SUPABASE_DATABASE_URL=postgresql://postgres:[password]@db.[project-ref].supabase.co:5432/postgres
SUPABASE_PROJECT_ID=your-project-id
# Database Configuration
NEXT_PUBLIC_DATABASE_URL=postgres://postgres:postgres@localhost:54322/postgres
# Stripe Configuration (for payments)
STRIPE_SECRET_KEY=your-stripe-secret-key
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=your-stripe-publishable-key
STRIPE_WEBHOOK_SECRET=your-stripe-webhook-secret
# JWT Secret (must match the one in docker-compose.yml)
JWT_SECRET=your-super-secret-jwt-token-with-at-least-32-characters-long