-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
15 lines (13 loc) · 857 Bytes
/
.env.example
File metadata and controls
15 lines (13 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Resend Configuration
RESEND_API_KEY=re_123456789
RESEND_FROM=onboarding@resend.dev
SUPPORT_EMAIL=ftc@bd73.com
VITE_SUPPORT_EMAIL=ftc@bd73.com
# Slack Integration (optional — required for Slack notification channel)
SLACK_CLIENT_ID="" # Slack app OAuth client ID
SLACK_CLIENT_SECRET="" # Slack app OAuth client secret
ENCRYPTION_KEY="" # 32-byte hex for AES-256-GCM (generate: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))")
# ENCRYPTION_KEY_OLD="" # Set to previous key during rotation — keep until all encrypted data has been re-encrypted with the new key
# SLACK_ENCRYPTION_KEY="" # Deprecated: use ENCRYPTION_KEY instead (still accepted as fallback)
# Chrome Extension JWT signing secret (32+ bytes random hex)
EXTENSION_JWT_SECRET="" # Generate: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"