-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
37 lines (34 loc) · 1.92 KB
/
Copy path.env.example
File metadata and controls
37 lines (34 loc) · 1.92 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
# Pathlight Environment Configuration
# Copy this file to .env and fill in your values:
# cp .env.example .env
# ──────────────────────────────────────────────
# Database
# ──────────────────────────────────────────────
# Local SQLite file (default):
# DATABASE_URL=file:pathlight.db
#
# Turso hosted database:
# DATABASE_URL=libsql://your-db-name-your-org.turso.io
# DATABASE_AUTH_TOKEN=your-turso-auth-token
# ──────────────────────────────────────────────
# Service Ports (OPTIONAL)
# ──────────────────────────────────────────────
# PORT=4100 # Collector
# DASHBOARD_URL=http://localhost:3100
# ──────────────────────────────────────────────
# LLM Span Replay (OPTIONAL)
# ──────────────────────────────────────────────
# Server-side credentials for in-dashboard LLM replay. The dashboard can
# also send per-request apiKey + baseUrl directly (saved in localStorage),
# which override the env vars below.
#
# Generic pair — works with any OpenAI-compatible or Anthropic provider.
# For OpenAI-compatible gateways (Provara, Groq, Together, Ollama, etc.)
# set REPLAY_BASE_URL to the gateway root (with or without /v1).
# REPLAY_API_KEY=your-provider-api-key
# REPLAY_BASE_URL=https://gateway.provara.xyz
#
# Provider-specific fallbacks — used if REPLAY_API_KEY is unset. Base URLs
# default to the canonical provider endpoint for each.
# OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...