-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy path.env.example
More file actions
61 lines (49 loc) · 2.6 KB
/
.env.example
File metadata and controls
61 lines (49 loc) · 2.6 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
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
58
59
60
61
# -----------------------------------------------------------------------------
# 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
# -----------------------------------------------------------------------------
# App URL
NEXT_PUBLIC_APP_URL=https://devpath-website.web.app
# GitHub
NEXT_PUBLIC_GITHUB_API_BASE_URL=https://api.github.com
NEXT_PUBLIC_GITHUB_REPO=devpathindcommunity-india/DevPath-Web
NEXT_PUBLIC_GITHUB_PER_PAGE=100
# GitHub Stats Widgets
NEXT_PUBLIC_GITHUB_STATS_URL=https://github-readme-stats-salesp07.vercel.app
NEXT_PUBLIC_GITHUB_STREAK_URL=https://github-readme-streak-stats-salesp07.vercel.app
# Avatars
NEXT_PUBLIC_AVATAR_API_URL=https://api.dicebear.com/7.x/avataaars/svg
NEXT_PUBLIC_AVATAR_FALLBACK_URL=https://ui-avatars.com/api
# DevPath
NEXT_PUBLIC_DEVPATH_API_URL=https://api.devpath.in
NEXT_PUBLIC_DEVPATH_COMMUNITY_URL=https://devpath.community
# Social Links
NEXT_PUBLIC_GITHUB_URL=https://github.com/devpathindcommunity-india
NEXT_PUBLIC_INSTAGRAM_URL=https://www.instagram.com/devpath_community/
NEXT_PUBLIC_LINKEDIN_URL=https://www.linkedin.com/company/devpath-community/
NEXT_PUBLIC_WHATSAPP_URL=https://chat.whatsapp.com/D2PRfQy4HYgC4XURhY2X8C
# Rate Limiting (server-only, no NEXT_PUBLIC prefix)
RATE_LIMIT_MAX=10
RATE_LIMIT_WINDOW_MS=60000