-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 1.2 KB
/
.env.example
File metadata and controls
43 lines (35 loc) · 1.2 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
# VibeBuilder App Configuration
# Copy this file to .env and fill in your values
# ======================
# GitHub OAuth Configuration
# ======================
# Your GitHub OAuth App Client ID
# Create one at: https://github.com/settings/developers
EXPO_PUBLIC_GITHUB_CLIENT_ID=your_github_client_id_here
# Your GitHub organization name where app repos will be created
# This should be an organization you have admin access to
EXPO_PUBLIC_GITHUB_ORG=vibebuilder-apps
# OAuth redirect URI (should match your GitHub OAuth app settings)
EXPO_PUBLIC_GITHUB_REDIRECT_URI=vibebuilder://auth/callback
# ======================
# API Configuration
# ======================
# Backend API base URL (if you have a backend)
EXPO_PUBLIC_API_BASE_URL=https://api.vibebuilder.app
# ======================
# App Limits
# ======================
# Maximum number of apps a user can create
EXPO_PUBLIC_MAX_APPS_PER_USER=50
# ======================
# Feature Flags
# ======================
# Enable analytics tracking
EXPO_PUBLIC_ENABLE_ANALYTICS=false
# Enable crash reporting
EXPO_PUBLIC_ENABLE_CRASH_REPORTING=false
# ======================
# Development Settings
# ======================
# Set to true for development mode
DEV_MODE=true