-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
23 lines (23 loc) · 904 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
# *create '.env' file and copy this same env variable name
# *add corresponding value to the variable
NODE_ENV=development
MONGODB_URL=mongodb://localhost:27017/<db-name>
CORS_ORIGIN_URL=http://localhost:5173
# generate a random SHA-256 hex code using "$ openssl rand -hex 32" command in terminal
JWT_TOEKN_SECRET=sha-256_hex_code
# credentials/variables for mail sender
MAIL_USER=example@gmail.com
MAIL_PASS=gmail-app-password
# credentials for razorpay
RAZORPAY_KEY_ID=razorpay-key-id
RAZORPAY_SECRET=razorpay-secret
# credentials for mimicing aws s3 bucket locally
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_ACCESS_KEY=minioadmin
MINIO_ENDPOINT=http://127.0.0.1:9000
MINIO_BUCKET_NAME=bucket-name
## credentials for aws s3 bucket (if need to test aws-s3 integration)
# AWS_BUCKET_NAME=bucket-name
# AWS_REGION=us-east-1
# AWS_ACCESS_KEY_ID=aws-access-key-id
# AWS_SECRET_ACCESS_KEY=aws-secret-access-key