-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
28 lines (21 loc) · 923 Bytes
/
.env.example
File metadata and controls
28 lines (21 loc) · 923 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
# MongoDB
MONGODB_URI=mongodb://localhost:27017/secretsanta
# Session Management (iron-session)
SESSION_SECRET=your-32-character-secret-key-here
# Email Provider Configuration
# Choose either "ses" or "resend"
EMAIL_PROVIDER=ses
# AWS SES Configuration (required if EMAIL_PROVIDER=ses)
AWS_ACCESS_KEY_ID=your-aws-access-key-id
AWS_SECRET_ACCESS_KEY=your-aws-secret-access-key
AWS_REGION=us-east-1
AWS_SES_SENDER_EMAIL=noreply@yourdomain.com
# AWS SQS Configuration (Optional - for email delivery tracking with SES)
AWS_SES_NOTIFICATION_QUEUE_URL=https://sqs.us-east-1.amazonaws.com/123456789/secret-santa-ses-notifications
# Webhook Security (Optional - for SES notifications)
WEBHOOK_SECRET=your-webhook-secret-token
# Resend Configuration (required if EMAIL_PROVIDER=resend)
RESEND_API_KEY=re_your_api_key_here
RESEND_SENDER_EMAIL=noreply@yourdomain.com
# Application URL
NEXT_PUBLIC_APP_URL=http://localhost:3011