-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
47 lines (39 loc) · 1.78 KB
/
env.example
File metadata and controls
47 lines (39 loc) · 1.78 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
46
47
# ===========================================
# Clerk Authentication (Required)
# ===========================================
# Get these from https://dashboard.clerk.com
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="pk_test_..."
CLERK_SECRET_KEY="sk_test_..."
# Clerk redirect URLs (optional, defaults work for most cases)
NEXT_PUBLIC_CLERK_SIGN_IN_URL="/sign-in"
NEXT_PUBLIC_CLERK_SIGN_UP_URL="/sign-up"
# ===========================================
# Database (Required for full functionality)
# ===========================================
# PostgreSQL with pgvector - get a free one from neon.tech
# Default Docker setup maps localhost:5433 -> container:5432
DATABASE_URL="postgresql://postgres:postgres@localhost:5433/braintrust_support"
# ===========================================
# Braintrust (Optional - for tracing)
# ===========================================
# Platform-level API key for tracing all tenant requests
BRAINTRUST_API_KEY="your-braintrust-api-key"
BRAINTRUST_PROJECT_NAME="customer-support-platform"
# Optional but recommended for BTQL queries
# BRAINTRUST_PROJECT_ID="proj_123"
# ===========================================
# App Configuration
# ===========================================
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# ===========================================
# AI Provider API Keys (At least one required)
# ===========================================
# Configure which AI providers are available to your users.
# Users can only select models from providers you've configured.
# OpenAI is also used for document embeddings and eval scorers.
# OpenAI - https://platform.openai.com/api-keys
OPENAI_API_KEY="sk-..."
# Anthropic - https://console.anthropic.com/settings/keys
# ANTHROPIC_API_KEY="sk-ant-..."
# Google AI - https://aistudio.google.com/apikey
# GOOGLE_API_KEY="AI..."