22 lines
1.3 KiB
Bash
22 lines
1.3 KiB
Bash
# Supabase
|
|
# URL for the Supabase DB.
|
|
# The preconfigured value with localhost is for the development with local Supabase.
|
|
NEXT_PUBLIC_SUPABASE_URL=http://localhost:54321
|
|
|
|
# Postgres connection string for the Supabase DB used by Prisma.
|
|
# The preconfigured value with localhost is for the development with local Supabase.
|
|
# Add `?pgbouncer=true&connection_limit=1` to the connection string if you are deploying to production.
|
|
SUPABASE_POSTGRES_URL=postgresql://postgres:postgres@localhost:54322/postgres
|
|
|
|
# Service role key you can get after starting local Supabase with `npm run db:start` ("service_role key: eyJh......")
|
|
# The following default key is generated by the local Supabase start and doesn't change
|
|
SUPABASE_SERVICE_ROLE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImV4cCI6MTk4MzgxMjk5Nn0.EGIM96RAZx35lJzdJsyH-qQwv8Hdp7fsn3W0YpN81IU
|
|
|
|
# Anonymous key you can get after starting local Supabase with `npm run db:start` ("anon key: eyJh......")
|
|
# The following default key is generated by the local Supabase start and doesn't change
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0
|
|
|
|
# e2b API
|
|
# URL for the e2b API
|
|
NEXT_PUBLIC_API_URL=http://localhost:49155
|