-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (24 loc) · 858 Bytes
/
.env.example
File metadata and controls
29 lines (24 loc) · 858 Bytes
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
# Public site URL (no trailing slash). Used in robots, sitemap, canonical, OG.
NEXT_PUBLIC_SITE_URL=https://tryknowflow.com
# Anthropic
ANTHROPIC_API_KEY=
# Supabase
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
# Paddle
NEXT_PUBLIC_PADDLE_CLIENT_TOKEN=
PADDLE_API_KEY=
PADDLE_WEBHOOK_SECRET=
PADDLE_PRO_PRICE_ID=
# Ingestion service (FastAPI on Railway)
INGESTION_SERVICE_URL=http://localhost:8000
# Shared secret between Next.js and the ingestion service.
# Generate with: openssl rand -hex 32
INGESTION_TOKEN=
# Embeddings (Voyage AI). Required by the ingestion service.
# Sign up at https://www.voyageai.com — voyage-3-large is the recommended
# default; output dimension is fixed at 1024 to match the chunks table.
VOYAGE_API_KEY=
# Optional override; defaults to voyage-3-large.
VOYAGE_MODEL=voyage-3-large