-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
28 lines (25 loc) · 981 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
25
26
27
28
--------------------------------------------
# NextAuth.js Environment variables
--------------------------------------------
# Secret used to encrypt the JWT (JSON Web Token) cookie
NEXTAUTH_SECRET=
# base URL of the site
NEXTAUTH_URL=http://localhost:3000
--------------------------------------------
# Database Environment variables
--------------------------------------------
# Database connection string
DATABASE_URL=
--------------------------------------------
# Email Environment variables
--------------------------------------------
EMAIL_SERVER_USER="123"
EMAIL_SERVER_PASSWORD="123"
EMAIL_SERVER_HOST="email123123-smtp.us-east-1.amazonaws.com"
EMAIL_SERVER_PORT="587"
EMAIL_FROM="[email protected]"
--------------------------------------------
# Dev Tooling Environment variables
--------------------------------------------
# Enable or disable the MSW (Mock Service Worker) in development. Options: 'enabled' | 'disabled'
NEXT_PUBLIC_MSW='disabled'