-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.vercel.example
More file actions
58 lines (53 loc) · 1.78 KB
/
Copy path.env.vercel.example
File metadata and controls
58 lines (53 loc) · 1.78 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
# ============================================
# Quirk Whitelabel Web - Vercel Environment Variables
# ============================================
# Set these in Vercel dashboard under Settings → Environment Variables
# ============================================
# API Configuration
# ============================================
VITE_API_URL=https://quirk-b2b-api.fly.dev
VITE_APP_URL=https://your-app.vercel.app
# ============================================
# Authentication (Privy)
# ============================================
# Get from: https://dashboard.privy.io
VITE_PRIVY_APP_ID=your_privy_app_id_here
# ============================================
# Optional: Analytics & Monitoring
# ============================================
VITE_GOOGLE_ANALYTICS_ID=G-XXXXXXXXXX
VITE_SENTRY_DSN=https://your_sentry_dsn_here
VITE_MIXPANEL_TOKEN=your_mixpanel_token_here
# ============================================
# Feature Flags (Optional)
# ============================================
VITE_ENABLE_ANALYTICS=true
VITE_ENABLE_SENTRY=false
VITE_MAINTENANCE_MODE=false
# ============================================
# HOW TO SET THESE IN VERCEL
# ============================================
#
# Option 1: Vercel Dashboard
# 1. Go to https://vercel.com/dashboard
# 2. Select your project
# 3. Go to Settings → Environment Variables
# 4. Add each variable above with the production values
# 5. Select "Production" environment
# 6. Click "Save"
#
# Option 2: Vercel CLI
#
# vercel env add VITE_API_URL
# Enter value: https://quirk-b2b-api.fly.dev
# Select environments: Production
#
# vercel env add VITE_PRIVY_APP_ID
# Enter value: your_privy_app_id
# Select environments: Production
#
# View all environment variables:
# vercel env ls
#
# Pull environment variables to .env.local:
# vercel env pull .env.local