-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (27 loc) · 852 Bytes
/
.env.example
File metadata and controls
37 lines (27 loc) · 852 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
# RecipeGenius Docker Environment Variables
# Copy this file to .env and fill in your actual values
# Clerk Authentication
CLERK_PUBLISHABLE_KEY=""
CLERK_SECRET_KEY=""
# Spoonacular API
SPOONACULAR_API_KEY=""
# Database (for production)
# MONGODB_URI=mongodb://admin:password@mongodb:27017/recipegenius?authSource=admin
# Node Environment
NODE_ENV=production
# Optional: External MongoDB (MongoDB Atlas)
MONGODB_URI=""
# Optional: Redis Cache
REDIS_URL=redis://redis:6379
# Optional: Email Service (for notifications)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your_email@gmail.com
SMTP_PASS=your_app_password
# Optional: File Storage (AWS S3)
AWS_ACCESS_KEY_ID=your_aws_access_key
AWS_SECRET_ACCESS_KEY=your_aws_secret_key
AWS_BUCKET_NAME=recipegenius-images
AWS_REGION=us-east-1
# Optional: Analytics
GOOGLE_ANALYTICS_ID=G-XXXXXXXXXX