-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
33 lines (30 loc) · 1.48 KB
/
.env.example
File metadata and controls
33 lines (30 loc) · 1.48 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
# ============================================================
# Firebase Configuration
# ============================================================
# Copy this file to .env and replace the placeholder values
# with your actual Firebase project credentials.
#
# To find these values:
# 1. Go to https://console.firebase.google.com
# 2. Select your project (or create one)
# 3. Click the gear icon → Project Settings
# 4. Scroll down to "Your apps" → select your web app
# 5. Copy the config values from the Firebase SDK snippet
# ============================================================
FIREBASE_API_KEY="your-api-key"
FIREBASE_AUTH_DOMAIN="your-project-id.firebaseapp.com"
FIREBASE_PROJECT_ID="your-project-id"
FIREBASE_STORAGE_BUCKET="your-project-id.appspot.com"
FIREBASE_MESSAGING_SENDER_ID="your-sender-id"
FIREBASE_APP_ID="your-app-id"
FIREBASE_DATABASE_URL="https://your-project-id-default-rtdb.firebaseio.com" # see readme 5.1
FIREBASE_MEASUREMENT_ID="your-measurement-id" # see readme 5.2, optional
# ============================================================
# Flask Configuration
# ============================================================
# Generate a strong secret key for session security.
# You can generate one in Python with:
# python -c "import secrets; print(secrets.token_hex(32))"
# But you can use any string, including the default below, for testing
# ============================================================
FLASK_SECRET_KEY="change-me-to-a-random-secret-key"