-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
17 lines (15 loc) · 809 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# JWT secret key for token signing and verification.
# This value must be a minimum of 32 characters for security.
# You can find this in the Supabase CLI output when running `supabase start`.
# Look for a line like: "JWT secret: [your-secret-key]"
JWT_SECRET=a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6
# Supabase project details for database and authentication.
# These values can also be found in the Supabase CLI output when running `supabase start`.
# Look for:
# API URL: [your-api-url]
# anon key: [your-anon-key]
NEXT_PUBLIC_SUPABASE_URL=http://127.0.0.1:54321
NEXT_PUBLIC_SUPABASE_ANON_KEY=a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6a7b8c9d0e1f2g3h4i5j6k7l8m9n0...
# Development Environment Flag
# Set to "true" for production environments and "false" for development or testing.
NEXT_PUBLIC_IS_PRODUCTION=false