-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.env.example
More file actions
45 lines (40 loc) · 2.67 KB
/
.env.example
File metadata and controls
45 lines (40 loc) · 2.67 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
# ── Docker Compose profiles ──────────────────────────────────────────────────
# Comma-separated list of optional services to run locally.
# Available: redis, postgres, elasticsearch
# Remove a service if you're pointing to an external instance instead.
COMPOSE_PROFILES=postgres
# ── Redis ─────────────────────────────────────────────────────────────────────
# Use redis://redis when running the redis profile locally.
# Use redis://<host> when pointing to an external instance.
REDIS_URL=redis://redis
# ── API ───────────────────────────────────────────────────────────────────────
# Leave blank to disable API key security.
# Set before opening the port in your firewall.
CONSERVER_API_TOKEN=
# ── Config ────────────────────────────────────────────────────────────────────
# Copy example_config.yml to config.yml, modify as needed, then set this path.
CONSERVER_CONFIG_FILE=
LOGGING_CONFIG_FILE=server/logging_dev.conf
# ── OpenTelemetry ─────────────────────────────────────────────────────────────
# Leave OTEL_EXPORTER_OTLP_ENDPOINT blank to disable tracing.
#
# Local Langfuse (add 'langfuse' to COMPOSE_PROFILES, then use pre-seeded creds):
# OTEL_EXPORTER_OTLP_ENDPOINT=http://langfuse-server:3000/api/public/otel
# OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
# OTEL_EXPORTER_OTLP_HEADERS=Authorization=Basic cGstbGYtbG9jYWxkZXY6c2stbGYtbG9jYWxkZXY=
# (pre-seeded: pk-lf-localdev / sk-lf-localdev, UI at http://localhost:3000, admin@langfuse.local / admin1234)
#
# Langfuse cloud:
# OTEL_EXPORTER_OTLP_ENDPOINT=https://cloud.langfuse.com/api/public/otel
# OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
# OTEL_EXPORTER_OTLP_HEADERS=Authorization=Basic <base64(public_key:secret_key)>
# Generate: echo -n "pk-lf-xxx:sk-lf-xxx" | base64
#
# SigNoz / OTEL collector (gRPC):
# OTEL_EXPORTER_OTLP_ENDPOINT=http://signoz-otel-collector:4317
# OTEL_EXPORTER_OTLP_PROTOCOL=grpc
# OTEL_EXPORTER_OTLP_INSECURE=true
OTEL_EXPORTER_OTLP_ENDPOINT=
OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
OTEL_EXPORTER_OTLP_INSECURE=false
OTEL_EXPORTER_OTLP_HEADERS=