-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (24 loc) · 1.05 KB
/
.env.example
File metadata and controls
28 lines (24 loc) · 1.05 KB
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
# Client-Side Firebase Configuration
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 Firebase Admin Configuration
# 1. Go to Firebase Console > Project Settings > Service Accounts
# 2. Click "Generate new private key"
# 3. Stringify the downloaded JSON file into a single line string to use here
# E.g., FIREBASE_SERVICE_ACCOUNT_KEY='{"type": "service_account", "project_id": "...", ...}'
FIREBASE_SERVICE_ACCOUNT_KEY=""
# Resend Configuration (Email)
# 1. Go to https://resend.com and create an account
# 2. Add and verify your domain (e.g., alora.web.id)
# 3. Create an API key from https://resend.com/api-keys
# 4. Add DNS records for your domain verification
RESEND_API_KEY=""
# App URL (for generating email links)
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# Enable fake SMTP for development email testing only
USE_ETHEREAL=false