-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy path.env.example
More file actions
31 lines (26 loc) · 1.55 KB
/
.env.example
File metadata and controls
31 lines (26 loc) · 1.55 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
29
30
31
# -----------------------------------------------------------------------------
# FIREBASE CONFIGURATION (PUBLIC)
# -----------------------------------------------------------------------------
# These variables are required for the client-side Firebase SDK.
# Get these values from your Firebase Console -> Project Settings -> Your Apps
# -----------------------------------------------------------------------------
NEXT_PUBLIC_FIREBASE_API_KEY=your_api_key_here
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_project_id.firebaseapp.com
NEXT_PUBLIC_FIREBASE_PROJECT_ID=your_project_id
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_messaging_sender_id
NEXT_PUBLIC_FIREBASE_APP_ID=your_app_id
# Optional: Measurement ID for Analytics
NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID=your_measurement_id
# -----------------------------------------------------------------------------
# SUPER ADMIN CONFIGURATION
# -----------------------------------------------------------------------------
# This email is used for super admin access to the admin panel (/ap).
# Must match the value in your Firestore admins collection.
# -----------------------------------------------------------------------------
NEXT_PUBLIC_SUPER_ADMIN_EMAIL=your_super_admin_email_here
# -----------------------------------------------------------------------------
# INSTRUCTIONS:
# 1. Copy this file to .env.local
# 2. Replace the placeholder values with your actual Firebase project credentials
# 3. NEVER commit your .env.local file to version control
# -----------------------------------------------------------------------------