-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (16 loc) · 873 Bytes
/
.env.example
File metadata and controls
22 lines (16 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# TEMPLATE FILE - Below are the all enviroment variable (with default values) that need to work this program smoothly.
# CREATE NEW FILE CALLED ".env" and Pass necessary values to these variables.
# Since these .env files are being used by various applicatin (ex.Docker, App) declaration format must be exactly like below.
# NODE_ENV=production <---- RIGHT
# NODE_ENV = production <---- WRONG
# NODE_ENV="production" <---- WRONG
# When using this apps Docker Images in Kubernetes Cluster these env values should be provided in kubernetes secret config.
NODE_ENV=development
PORT=4000 # Specifiy which PORT backend should be run on and also expose it in docker container.
# Token Generting Specifics
JWT_SECRET=mySuperSecretsP4$$w0rD
JWT_EXPIRES=3600s
# Below are mostly needed in CI enviroment.
DOCKER_USERNAME=
DOCKER_PASSWORD=
CODECOV_TOKEN=