forked from steven-tey/precedent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
24 lines (19 loc) · 1019 Bytes
/
.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
### These env vars are for authentication & database to work. If you don't require them, feel free to enter dummy values for all these.
# Create a free PostgreSQL database: https://vercel.com/postgres
# If you're deploying this template with a Vercel Deploy Button, these will be configured automatically for you.
POSTGRES_PRISMA_URL=
POSTGRES_URL_NON_POOLING=
# Follow the instructions here to create a Google OAuth app: https://refine.dev/blog/nextauth-google-github-authentication-nextjs/#for-googleprovider-make-sure-you-have-a-google-account
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# Only for production – generate one here: https://generate-secret.vercel.app/32
NEXTAUTH_SECRET=
## Only required for localhost
NEXTAUTH_URL=http://localhost:3000
POSTGRES_HOST="POSTGRES_HOST"
POSTGRES_PASSWORD="POSTGRES_PASSWORD"
POSTGRES_PRISMA_URL="POSTGRES_PRISMA_URL"
POSTGRES_URL="POSTGRES_URL"
POSTGRES_URL_NON_POOLING="POSTGRES_URL_NON_POOLING"
POSTGRES_URL_NO_SSL="POSTGRES_URL_NO_SSL"
POSTGRES_USER="POSTGRES_USER"