forked from braydenidzenga/ZettaNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (28 loc) · 1.02 KB
/
.env.example
File metadata and controls
36 lines (28 loc) · 1.02 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
# ZettaNote Docker Environment Variables
# Copy this file to .env and fill in your values
# Database Configuration
MONGO_ROOT_USERNAME=admin
MONGO_ROOT_PASSWORD=your_secure_mongo_password
# JWT Configuration
JWT_SECRET=your_super_secure_jwt_secret_key_here
# CORS Configuration
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001
# Email Configuration (Optional)
RESEND_API_KEY=your_resend_api_key
FROM_EMAIL=noreply@zettanote.tech
# URLs
FRONTEND_URL=http://localhost:3000
BACKEND_URL=http://localhost:4000
REACT_APP_API_URL=http://localhost/api
# OAuth Configuration (Optional)
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
GITHUB_CLIENT_ID=your_github_client_id
GITHUB_CLIENT_SECRET=your_github_client_secret
# Cloudinary Configuration (Optional - for image uploads)
CLOUDINARY_CLOUD_NAME=your_cloudinary_cloud_name
CLOUDINARY_API_KEY=your_cloudinary_api_key
CLOUDINARY_SECRET=your_cloudinary_secret
# Cron Job Configuration
DISABLE_REMINDER_CRON=false
DISABLE_IMAGE_CLEANUP_CRON=false