-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsample.env
More file actions
41 lines (33 loc) · 1.29 KB
/
sample.env
File metadata and controls
41 lines (33 loc) · 1.29 KB
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
34
35
36
37
38
39
40
41
###############################################################
### Rename this file to .env and fill the required details ####
###############################################################
## Database Related Stuff
DB_NAME = "<your myself db's name>"
DB_HOST = "127.0.0.1"
DB_USER = "root"
DB_PASS = "<your password>"
## Exotel
EXOTEL_SID = "<sid of exotel>"
EXOTEL_TOKEN = "<secret token of exotel>"
EXOTEL_SENDER_ID = "<sender id of exotel>"
## S3
S3_BUCKET = "<name of s3 bucket>"
S3_BUCKET_BASE_URL = "https://s3.ap-south-1.amazonaws.com/" # will vary according to zone
S3_ACCESS_KEY = "<s3 access key>"
S3_SECRET_KEY = "<s3 secret key>"
## SES
SES_ACCESS_KEY = "<s3 access key>"
SES_SECRET_KEY = "<s3 secret key>"
SES_SENDER_EMAIL = "<s3 sender email>"
##Node Environment mode either development or production.
NODE_ENV="development"
#NODE_ENV="production"
## Other
API_BASE_URL = "<couple of methods call the API itself. so they need the base url>"
PORT = 3000
## Google Sheet Credentials
GSHEET_ID = "<the id of the google sheet>"
GSHEET_CLIENT_EMAIL = "<email of the service account. this service account should be added as a collaborator the sheet.>"
GSHEET_PRIVATE_KEY = "<private key in the json given by google>"
# JWT Secret
JWT_SIGNING_SECRET = "<put some secret here. ideally very very complex.>"