-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
40 lines (31 loc) · 966 Bytes
/
.env
File metadata and controls
40 lines (31 loc) · 966 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
29
30
31
32
33
34
35
36
37
38
39
40
# Server Configuration
PORT=5000
NODE_ENV=development
# MongoDB
MONGODB_URI=your_mongodb_connection_string
# JWT
JWT_SECRET=your_jwt_secret_key
JWT_EXPIRE=7d
# Email (SendGrid)
SENDGRID_API_KEY=your_sendgrid_api_key
EMAIL_FROM=noreply@yourstore.com
CLIENT_URL=http://localhost:3000
# AWS S3 Storage
AWS_ACCESS_KEY_ID=your_aws_access_key
AWS_SECRET_ACCESS_KEY=your_aws_secret_key
AWS_REGION=us-east-1
AWS_BUCKET_NAME=your-bucket-name
# Google Analytics
GA_MEASUREMENT_ID=your_ga_measurement_id
GA_API_SECRET=your_ga_api_secret
# Remove.bg API (optional)
REMOVE_BG_API_KEY=your_remove_bg_api_key
# Social Logins
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
FACEBOOK_APP_ID=your_facebook_app_id
FACEBOOK_APP_SECRET=your_facebook_app_secret
# Address Validation (Loqate)
ADDRESS_VALIDATION_KEY=your_loqate_api_key
# CORS (comma-separated for multiple origins)
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001