-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path.env.example
62 lines (44 loc) · 2.19 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
##### REQUIRED FOR DEV #####
# Supabase keys, learn more here: https://supabase.com/docs/guides/getting-started/quickstarts/nextjs
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
NEXT_PRIVATE_SUPABASE_SERVICE_ROLE_KEY=
# needed for sending auth emails, learn more here: https://supabase.com/docs/guides/auth/auth-hooks?queryGroups=language&language=http
SEND_EMAIL_HOOK_SECRET=
# key used to send emails via resend, learn more here: https://resend.com/docs/send-with-nextjs
RESEND_API_KEY=
# Keys used to connect to PostHog, learn more here: https://posthog.com/docs/libraries/next-js?tab=App+router
NEXT_PUBLIC_POSTHOG_KEY=
NEXT_PUBLIC_POSTHOG_HOST=
# This was inserted by `prisma init`:
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
# Connect to Supabase via connection pooling with Supavisor.
DATABASE_URL=
# Direct connection to the database. Used for migrations.
DIRECT_URL=
# What ever port you are running the app on
NEXT_PUBLIC_URL=
# Redirect url for updating user details
UPDATE_USER_REDIRECT_URL=
# the url to execute the code
EXECUTE_CODE_URL=
##### OPTIONAL KEYS NOT REQUIRED FOR DEV #####
# Keys used to connect to Stripe (only needed for stripe development)
NEXT_PUBLIC_STRIPE_KEY=
NEXT_PRIVATE_STRIPE_SECRET_KEY=
# webhook secret used for updating user details from stripe events, learn more here: https://docs.stripe.com/development/dashboard/webhooks?locale=en-GB
NEXT_PRIVATE_STRIPE_WEBHOOK_SECRET=
# Keys used to connect to OpenAI (only needed for ai development)
NEXT_PRIVATE_OPEN_AI_API_KEY=
NEXT_PRIVATE_OPEN_AI_ORG=
# Keys used to connect to Claude (only needed for ai development)
NEXT_PRIVATE_CLAUDE_API_KEY=
# already preset.
NEXT_PUBLIC_ENV=development
# secret used to authenticate cron jobs, not needed for dev
CRON_SECRET=
# the referral code that will be used to invite users
REFERRAL_CODE=