forked from e2b-dev/E2B
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
21 lines (17 loc) · 1.33 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Supabase
# URL for the Supabase DB.
# The preconfigured value with localhost is for the development with local Supabase.
NEXT_PUBLIC_SUPABASE_URL=https://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:https://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=https://localhost:49155