-
Notifications
You must be signed in to change notification settings - Fork 5
/
example.env
32 lines (23 loc) · 1013 Bytes
/
example.env
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
## Environment variables for the application
# The environment the application is running in (e.g. development, production, test)
NODE_ENV=
# The port number that the application listens on
PORT=
# The hostname or IP address that the application binds to (e.g. localhost, 127.0.0.1)
HOST=
# The logging level for the application (e.g. debug, info, warn, error)
LOG_LEVEL=
# Whether to enable clustering mode for the application (true or false)
CLUSTERING=
# The URI for the MongoDB database used by the application
MONGODB_URI=
# The private key for generating JSON Web Tokens (JWTs)
# in README.md for more information how to generate a private key
JWT_PRIVATE_KEY=
# The public key for verifying JSON Web Tokens (JWTs)
# in README.md for more information how to generate a public key
JWT_PUBLIC_KEY=
# The expiration time for JSON Web Tokens (JWTs)
# expressed in seconds or a string describing a time span [zeit/ms](https://github.com/zeit/ms.js).
# Eg: 60, "2 days", "10h", "7d"
JWT_EXPIRATION_TIME=