-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
46 lines (40 loc) · 1.18 KB
/
Copy pathenv.example
File metadata and controls
46 lines (40 loc) · 1.18 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
42
43
44
45
46
# ===========================
# Server configuration
# ===========================
PORT=3000
# ===========================
# MongoDB connection
# ===========================
MONGODB_USER=your_mongodb_username
MONGODB_PASSWORD=your_mongodb_password
MONGODB_URL=your_cluster.mongodb.net
MONGODB_DB=notes
# ===========================
# SMTP / Email settings
# ===========================
SMTP_HOST=smtp.example.com
SMTP_PORT=465
SMTP_USER=your_email@example.com
SMTP_PASSWORD=your_email_password
SMTP_FROM=your_email@example.com
# ===========================
# JWT Security
# ===========================
JWT_SECRET=your_jwt_secret_key
# ===========================
# Frontend / Backend domains
# ===========================
RESET_PASSWORD_PAGE_DOMAIN=https://your-frontend-domain.com
APP_DOMAIN=http://localhost:3000
# ===========================
# Cloudinary configuration
# ===========================
CLOUD_NAME=your_cloudinary_name
API_KEY=your_cloudinary_key
API_SECRET=your_cloudinary_secret
ENABLE_CLOUDINARY=true
# ===========================
# Google OAuth
# ===========================
GOOGLE_AUTH_CLIENT_ID=your_google_oauth_client_id
GOOGLE_AUTH_CLIENT_SECRET=your_google_oauth_client_secret