Press J or click me!

Docs
Env

Environment Variables

Learn how to adjust environment variables for a working boilerplate.
NEXT_PUBLIC_SUPABASE_URL = Supabase API endpoint URL.NEXT_PUBLIC_SUPABASE_ANON_KEY = Key for read-only database access.NEXT_PUBLIC_SUPABASE_SERVICE_KEY = Key for server-side database operations.STRIPE_SECRET_KEY = Secret key for authenticating with the Stripe API.STRIPE_WEBHOOK_SECRET = Secret key for verifying incoming webhook events.

Changing the SEO default settings.

Rename the .env.example file to .env.example

The file content should look like this:

1.# Supabase Keys2.NEXT_PUBLIC_SUPABASE_URL=https://"...".supabase.co3.NEXT_PUBLIC_SUPABASE_ANON_KEY=ey...4.NEXT_PUBLIC_SUPABASE_SERVICE_KEY=ey...5.6.# Stripe Keys7.STRIPE_SECRET_KEY=sk_live...8.STRIPE_WEBHOOK_SECRET=whsec_...9.10.# Loops Key11.NEXT_LOOPS_KEY=...