-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
46 lines (37 loc) · 2 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
# Since .env.local is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
# Keep this file up-to-date when you add new variables to \`.env\`.
# This file will be committed to version control, so make sure not to have any secrets in it.
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
# We use dotenv to load Prisma from Next.js' .env.local file
# @see https://www.prisma.io/docs/reference/database-reference/connection-urls
DATABASE_URL='mysql://user:password@host/db?sslaccept=strict'
# Clerk
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="pk_test_"
CLERK_SECRET_KEY="sk_test_"
# Stripe
STRIPE_API_KEY="sk_test_"
STRIPE_WEBHOOK_SECRET="whsec_"
NEXT_PUBLIC_STRIPE_STD_PRODUCT_ID="prod_"
NEXT_PUBLIC_STRIPE_STD_MONTHLY_PRICE_ID="price_"
NEXT_PUBLIC_STRIPE_PRO_PRODUCT_ID="prod_"
NEXT_PUBLIC_STRIPE_PRO_MONTHLY_PRICE_ID="price_"
# Misc
NEXTJS_URL="http://localhost:3000"
# Auto generated from Upstash integration (feel free to pull it from your Vercel project with `vc env pull`)
UPSTASH_REDIS_REST_URL=
UPSTASH_REDIS_REST_TOKEN=
# Required for email auth – setup instructions here: https://next-auth.js.org/providers/email#configuration
EMAIL_SERVER=
EMAIL_FROM=
# Generate a random secret here: https://generate-secret.vercel.app/32
NEXTAUTH_SECRET=
###############################################################
# Required for adding domains to Vercel using the Domains API
###############################################################
## Here's how you can get your Project & Team ID: https://vercel.com/guides/nextjs-multi-tenant-application#6.-add-custom-domains-with-the-vercel-api
PROJECT_ID_VERCEL=
TEAM_ID_VERCEL=
## Here's how you can create an auth bearer token: https://vercel.com/guides/how-do-i-use-a-vercel-api-access-token#creating-an-access-token
AUTH_BEARER_TOKEN=
# Required for SQL database: you can follow this guide to set this up: https://vercel.com/guides/nextjs-multi-tenant-application#2.-set-up-your-mysql-database
DATABASE_URL=