-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
19 lines (17 loc) · 819 Bytes
/
Copy path.env.example
File metadata and controls
19 lines (17 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copy this file to .env.local and fill in your actual values
# Never commit .env.local to version control
# Supabase Configuration
NEXT_PUBLIC_SUPABASE_URL="https://your-project.supabase.co"
NEXT_PUBLIC_SUPABASE_ANON_KEY="your_anon_key_here"
NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY="your_publishable_key_here"
SUPABASE_JWT_SECRET="your_jwt_secret_here"
SUPABASE_SECRET_KEY="your_secret_key_here"
SUPABASE_SERVICE_ROLE_KEY="your_service_role_key_here"
# PostgreSQL Configuration
POSTGRES_URL="postgresql://user:password@host:6543/postgres"
POSTGRES_URL_NON_POOLING="postgresql://user:password@host:5432/postgres"
POSTGRES_PRISMA_URL="postgresql://user:password@host:6543/postgres?pgbouncer=true"
POSTGRES_HOST="your_host_here"
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="your_password_here"
POSTGRES_DATABASE="postgres"