forked from SanGoku95/capibarismo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1.06 KB
/
.env.example
File metadata and controls
27 lines (22 loc) · 1.06 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
# Environment Variables Configuration
# Copy this file to .env.local and fill in your actual values
# PostHog Analytics (Optional - for user analytics and session recording)
# Get your key from: https://posthog.com/
# If not provided, analytics will be disabled in development
VITE_POSTHOG_KEY=your_posthog_api_key_here
# Development Mode Settings
# Set to 'true' to call the real API in development.
# Set to 'false' (or leave unset) to use local mock data.
VITE_USE_API=false
# Vercel Blob Storage (Required for production API endpoints)
# Get from: Vercel Dashboard > Storage > Blob
# Used for storing and retrieving vote data
BLOB_READ_WRITE_TOKEN=vercel_blob_token_here
# Node Environment (automatically set by most platforms)
# NODE_ENV=development
# NODE_ENV=production
# Notes:
# - Never commit actual API keys or tokens to the repository
# - Use .env.local for local development (already in .gitignore)
# - Production values should be set in Vercel/hosting platform environment settings
# - VITE_ prefix makes the variable available to client-side code (be careful!)