-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
27 lines (21 loc) · 1.01 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
# Client Side Keys (Firebase Web), can be exposed to the client
NEXT_PUBLIC_FIREBASE_API_KEY=""
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=""
NEXT_PUBLIC_FIREBASE_PROJECT_ID=""
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=""
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=""
NEXT_PUBLIC_FIREBASE_APP_ID=""
# Server Side Keys (Firebase Admin), never exposed this!
FIREBASE_PRIVATE_KEY="" # https://console.cloud.google.com/iam-admin/serviceaccounts/details/112583031391573028683/keys?authuser=0&hl=fr&project=weekly-ai-tips
FIREBASE_CLIENT_EMAIL="" # https://console.cloud.google.com/iam-admin/serviceaccounts/details/112583031391573028683?authuser=0&hl=fr&project=weekly-ai-tips
FIREBASE_STORAGE_BUCKET="" # https://console.cloud.google.com/storage/browser/weekly-ai-tips.appspot.com?authuser=0&hl=fr&project=weekly-ai-tips
ALLOWED_EMAILS="email@alexsoyes.com,email2@alexsoyes.com"
# Cron
CRON_SECRET="changeit"
# Email API key
RESEND_KEY="changeit"
# ReCAPTCHA
NEXT_PUBLIC_RECAPTCHA_KEY=""
RECAPTCHA_SECRET=""
# App URL
APP_URL="http://localhost:3000"