- Install posthog-js and @posthog/react packages - Add PostHogProvider wrapper in main.tsx for both apps - Configure PostHog with EU instance and 2026-01-30 defaults - Add environment variables for API key and host - Update docker-compose.coolify.yml with PostHog build args
18 lines
570 B
Plaintext
18 lines
570 B
Plaintext
# Frontend Environment Configuration
|
|
# Copy to .env and adjust for your setup
|
|
|
|
# ===== DOCKER MODE (frontend in container) =====
|
|
# Use when frontend runs in Docker container
|
|
# VITE_API_URL=http://backend:3000/api/v1
|
|
|
|
# ===== LOCAL MODE (frontend runs locally) =====
|
|
# Use when frontend runs locally with npm run dev
|
|
VITE_API_URL=http://localhost:3000/api/v1
|
|
|
|
# ===== COMMON =====
|
|
VITE_CMS_URL=http://localhost:1337
|
|
|
|
# ===== POSTHOG ANALYTICS =====
|
|
VITE_PUBLIC_POSTHOG_KEY=phc_kuDGT1kUmJmijLRjiQaKWIaU4JBdFW0aELW2hIGlBXR
|
|
VITE_PUBLIC_POSTHOG_HOST=https://eu.i.posthog.com
|