28 lines
952 B
Plaintext
28 lines
952 B
Plaintext
# GitHub Profile README Generator - Environment Configuration
|
|
|
|
# Google Analytics 4 Configuration
|
|
# Get your GA4 Measurement ID from Google Analytics
|
|
# Format: G-XXXXXXXXXX
|
|
NEXT_PUBLIC_GA_ID=G-XXXXXXXXXX
|
|
|
|
# Optional: Google Search Console Verification
|
|
# Get this from Google Search Console -> Settings -> Ownership verification
|
|
NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION=your-verification-code
|
|
|
|
# Privacy & GDPR Compliance
|
|
# Set to 'true' to require explicit consent before loading analytics
|
|
# Set to 'false' to load analytics by default (not GDPR compliant)
|
|
NEXT_PUBLIC_REQUIRE_CONSENT=true
|
|
|
|
# Analytics Configuration
|
|
# Set to 'true' to anonymize IP addresses (recommended for privacy)
|
|
NEXT_PUBLIC_ANONYMIZE_IP=true
|
|
|
|
# Development Configuration
|
|
# Set to 'development' to disable analytics in development mode
|
|
NODE_ENV=development
|
|
|
|
# Optional: Custom Domain Configuration
|
|
# Update if deploying to a custom domain
|
|
NEXT_PUBLIC_SITE_URL=https://your-domain.com
|