-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
43 lines (38 loc) · 1.46 KB
/
Copy pathenv.example
File metadata and controls
43 lines (38 loc) · 1.46 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
# Environment variables for Focus Quest.
#
# Copy this file to `.env` (not committed) and fill in any values you need.
# The app calls `flutter_dotenv`'s `dotenv.load()` at startup; values can
# then be read with `dotenv.env['KEY']` from anywhere in the app.
#
# No keys are required for the app to boot during LOCAL mobile development
# (`.env` may be empty there — firebase_options.dart is committed locally via
# FlutterFire). The variables below are consumed by
# scripts/generate_firebase_options.sh at WEB DEPLOY time (Vercel) to generate
# lib/firebase_options.dart and a runtime .env.
#
# Source these values from:
# Firebase Console -> Project Settings -> Your apps -> Web app config.
#
# On Vercel, set them under: Project -> Settings -> Environment Variables.
# --- Firebase: WEB (required for web deploy) ---
FIREBASE_API_KEY_WEB=
FIREBASE_APP_ID_WEB=
FIREBASE_MESSAGING_SENDER_ID=
FIREBASE_PROJECT_ID=
FIREBASE_AUTH_DOMAIN=
FIREBASE_STORAGE_BUCKET=
FIREBASE_MEASUREMENT_ID=
# --- Firebase: Android (only needed if building Android via this pipeline) ---
FIREBASE_API_KEY_ANDROID=
FIREBASE_APP_ID_ANDROID=
# --- Firebase: iOS / macOS (only needed if building Apple via this pipeline) ---
FIREBASE_API_KEY_IOS=
FIREBASE_APP_ID_IOS=
FIREBASE_IOS_CLIENT_ID=
FIREBASE_IOS_BUNDLE_ID=
# --- Firebase: Windows (optional) ---
FIREBASE_APP_ID_WINDOWS=
FIREBASE_MEASUREMENT_ID_WINDOWS=
# Example placeholders (uncomment and fill in if/when needed):
# SENTRY_DSN=
# API_BASE_URL=