-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (29 loc) · 1.38 KB
/
.env.example
File metadata and controls
35 lines (29 loc) · 1.38 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
# ACP Mobile Environment Configuration
# API Configuration
EXPO_PUBLIC_API_BASE_URL=https://ambient-code.apps.rosa.vteam-stage.7fpc.p3.openshiftapps.com/api/v1
# OAuth Configuration
EXPO_PUBLIC_OAUTH_CLIENT_ID=acp-mobile
EXPO_PUBLIC_OAUTH_DOMAIN=ambient-code.apps.rosa.vteam-stage.7fpc.p3.openshiftapps.com
# Development Flags
# Set to "false" to disable mock data in development (useful for testing with real backend)
EXPO_PUBLIC_USE_MOCK_DATA=true
EXPO_PUBLIC_USE_MOCK_SSE=true
# Mock Authentication (temporary - while OAuth backend callback is being configured)
# Set to "true" to bypass OAuth and auto-login as a mock user
# This allows development without a working OAuth backend
# To use:
# 1. Set EXPO_PUBLIC_USE_MOCK_AUTH=true in .env.local
# 2. Restart dev server (npm start)
# 3. App will auto-authenticate as "Developer User"
# To disable:
# 1. Set EXPO_PUBLIC_USE_MOCK_AUTH=false (or remove the line)
# 2. Restart dev server
# 3. App will use real OAuth flow
EXPO_PUBLIC_USE_MOCK_AUTH=false
# Telemetry Configuration (PostHog)
# Get your API key from: https://app.posthog.com/project/settings
EXPO_PUBLIC_POSTHOG_API_KEY=your_project_api_key_here
EXPO_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com
# Production Configuration
# For production builds, these will be automatically disabled regardless of values
# Never set these to "true" in production - they have built-in safeguards