chore: Standardize environment variable placeholder format in langfuse/.env.example

This commit is contained in:
John Doe
2026-04-04 11:47:24 -04:00
parent 81b662c114
commit 3864fc4777
+7 -6
View File
@@ -17,18 +17,19 @@ LANGFUSE_ENABLED=true
# ==============================================================================
# Langfuse Security Settings
# ==============================================================================
# Generate secure salt with: openssl rand -hex 32
# Langfuse Salt (for session token hashing)
# Generate with: openssl rand -hex 32
# REQUIRED: Change this in production!
LANGFUSE_SALT=change-this-salt-random-value
LANGFUSE_SALT=<your-langfuse-salt>
# Generate secure NextAuth secret with: openssl rand -hex 32
# REQUIRED: Change this in production!
LANGFUSE_NEXTAUTH_SECRET=change-this-nextauth-secret
LANGFUSE_NEXTAUTH_SECRET=<your-nextauth-secret>
# Langfuse PostgreSQL password
# Generate with: openssl rand -base64 32
# REQUIRED: Change this in production!
LANGFUSE_POSTGRES_PASSWORD=change-this-db-password
LANGFUSE_POSTGRES_PASSWORD=<your-langfuse-postgres-password>
# ==============================================================================
# Langfuse Feature Flags
@@ -50,8 +51,8 @@ LANGFUSE_EXTERNAL_HOST=http://localhost:3000
# Langfuse API Keys (generated after first login to Langfuse dashboard)
# Navigate to: Project Settings → API Keys
LANGFUSE_PUBLIC_KEY=pk-lf-xxxxxxxxxxxxxxxxxxxxxxxx
LANGFUSE_SECRET_KEY=sk-lf-xxxxxxxxxxxxxxxxxxxxxxxx
LANGFUSE_PUBLIC_KEY=<your-langfuse-public-key>
LANGFUSE_SECRET_KEY=<your-langfuse-secret-key>
# ==============================================================================
# LiteLLM Integration Settings