-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.env.example
29 lines (24 loc) · 830 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
29
PORT = 3000
NODE_ENV = development
DOMAIN = http://localhost:3000
# session secret, any random string will do
SECRET =
# MongoDB connection URI
# Example localhost connection: mongodb://localhost:27017/<dbname>
# Example Atlas connection: mongodb+srv://<user>:<password>@<cluster>.<subdomain>.mongodb.net/<dbname>?retryWrites=true&w=majority
DB_URI =
# Only needed for local (username and password) login
# Set NODE_ENV to `production` if you want to use SMTP settings. In `development` only FROM_EMAIL is needed
SMTP_SERVER =
SMTP_PORT =
SMTP_USER =
SMTP_PASS =
FROM_EMAIL =
FROM_NAME =
# Only needed if you are using Google login
# the 'x' placeholders are used to avoid errors due to missing environment variables
GOOGLE_ID = x
GOOGLE_SECRET = x
# Only needed if you are using Github login
GITHUB_ID = x
GITHUB_SECRET = x