-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
24 lines (21 loc) · 1.14 KB
/
.env.example
File metadata and controls
24 lines (21 loc) · 1.14 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
# Firebase Configuration (Production credentials)
NEXT_PUBLIC_FIREBASE_API_KEY="your-firebase-api-key"
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN="your-firebase-auth-domain"
NEXT_PUBLIC_FIREBASE_PROJECT_ID="your-firebase-project-id"
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET="your-firebase-storage-bucket"
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID="your-firebase-messaging-sender-id"
NEXT_PUBLIC_FIREBASE_APP_ID="your-firebase-app-id"
# NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID="your-firebase-measurement-id" # Not required
# Firebase Emulator Configuration (Development)
# Set to "true" to use Firebase emulators, "false" or remove for production
NEXT_PUBLIC_USE_FIREBASE_EMULATOR="true"
NEXT_PUBLIC_FIRESTORE_EMULATOR_HOST="localhost"
NEXT_PUBLIC_FIRESTORE_EMULATOR_PORT="4000"
NEXT_PUBLIC_AUTH_EMULATOR_HOST="localhost"
NEXT_PUBLIC_AUTH_EMULATOR_PORT="9099"
# Admin GitHub Usernames (comma-separated, case-insensitive)
NEXT_PUBLIC_ADMIN_USERNAMES="admin1,admin2"
# ImageKit (for upload field support)
NEXT_PUBLIC_IMAGEKIT_PUBLIC_KEY="your-imagekit-public-key"
NEXT_PUBLIC_IMAGEKIT_URL_ENDPOINT="https://ik.imagekit.io/your_imagekit_id"
IMAGEKIT_PRIVATE_KEY="your-imagekit-private-key"