forked from nextauthjs/next-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.local.example
33 lines (26 loc) · 1.08 KB
/
.env.local.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
# Rename file to .env.local (or .env) and populate values
# to be able to run the dev app
NEXTAUTH_URL=http://localhost:3000
# You can use `openssl rand -hex 32` or
# https://generate-secret.now.sh/32 to generate a secret.
# Note: Changing a secret may invalidate existing sessions
# and/or verificaion tokens.
SECRET=
AUTH0_ID=
AUTH0_DOMAIN=
AUTH0_SECRET=
GITHUB_ID=
GITHUB_SECRET=
TWITTER_ID=
TWITTER_SECRET=
# Example configuration for a Gmail account (will need SMTP enabled)
EMAIL_SERVER=smtps://[email protected]:[email protected]:465
# You can use any of these as the "DATABASE_URL" for
# databases started with Docker using `npm run db:start`.
# Note: If using with Prisma adapter, you need to use a `.env`
# file rather than a `.env.local` file to configure env vars.
# Postgres: DATABASE_URL=postgres://nextauth:[email protected]:5432/nextauth?synchronize=true
# MySQL: DATABASE_URL=mysql://nextauth:[email protected]:3306/nextauth?synchronize=true
# MongoDB: DATABASE_URL=mongodb://nextauth:[email protected]:27017/nextauth?synchronize=true
DATABASE_URL=