-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env.example
57 lines (43 loc) · 1.17 KB
/
.env.example
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
47
48
49
50
51
52
53
54
55
56
57
# For databases with pooled connections such as the once that use pgbpuncer, use DIRECT_URL for migrations.
DATABASE_URL=''
DIRECT_URL=''
NEXTAUTH_URL="http://localhost:3000"
NEXTAUTH_SECRET="my-secret"
NEXT_PUBLIC_WEB_URL="http://localhost:3000"
# JWT to generate invites, CHANGE THIS
JWT_SECRET=my-jwt-local-secret
# Google Analytics
GOOGLE_ANALYTICS_MEASUREMENT_ID=""
GOOGLE_ANALYTICS_CLIENT_ID=""
GOOGLE_ANALYTICS_CLIENT_SECRET=""
# Google oauth
GOOGLE_OAUTH_CLIENT_ID=""
GOOGLE_OAUTH_CLIENT_SECRET=""
# ReCaptcha: these are the TEST variables
NEXT_PUBLIC_RE_CAPTCHA_SITE_KEY="6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI"
RE_CAPTCHA_SECRET_KEY="6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe"
# Chat completion
OPENAI_API_KEY=""
# Email sending
# MAILERSEND_API_TOKEN=""
# Media storage
STORAGE_RESOURCE_NAME=""
AZURE_STORAGE_ACCESS_KEY=""
# Stripe
STRIPE_SECRET_KEY=""
STRIPE_WEBHOOK_SECRET=""
NEXT_PUBLIC_STRIPE_CUSTOMER_PORTAL_URL=""
# Audio transcription
DEEPGRAM_API_KEY=""
# Telegram notifications
TELEGRAM_BOT_TOKEN=""
TELEGRAM_BOT_CHAT_ID=""
# AWS SES
SMTP_USERNAME=""
SMTP_PASSWORD=""
SMTP_ENDPOINT=""
# AWS S3
AWS_ACCESS_KEY=""
AWS_SECRET_KEY=""
AWS_BUCKET_NAME=""
AWS_REGION=""