-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (22 loc) · 705 Bytes
/
Copy pathenv.example
File metadata and controls
28 lines (22 loc) · 705 Bytes
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
# Database Configuration
MONGO_URI=mongodb://mongodb:27017/ecommerce
MONGO_ROOT_USERNAME=admin
MONGO_ROOT_PASSWORD=password
MONGO_DATABASE=ecommerce
# JWT Configuration
JWT_SECRET=your_jwt_secret_key_here
# Razorpay Configuration
RAZORPAY_KEY_ID=your_razorpay_key_id
RAZORPAY_KEY_SECRET=your_razorpay_key_secret
# Email Configuration
EMAIL_USER=your_email@gmail.com
EMAIL_PASS=your_email_password
# Google OAuth Configuration
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
# Let's Encrypt Configuration
LETSENCRYPT_DOMAIN=yourdomain.com
LETSENCRYPT_EMAIL=your_email@yourdomain.com
# Application Configuration
BASE_URL=http://localhost:3000
NODE_ENV=production