-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 801 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (16 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Supabase browser-safe values
NEXT_PUBLIC_SUPABASE_URL=https://<supabase-project-ref>.supabase.co
NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY=<supabase-publishable-or-anon-key>
# App URL used for auth redirects
NEXT_PUBLIC_SITE_URL=http://localhost:3000
# Local demo mode. Set to true to explore the app with seeded study data and no live auth/database dependency.
DEMO_MODE=true
# Private Supabase Storage bucket for uploaded PDFs
SUPABASE_DOCUMENTS_BUCKET=documents
# Server-only OpenAI values. Do not expose these with NEXT_PUBLIC_.
OPENAI_API_KEY=<openai-api-key>
OPENAI_MODEL=gpt-5-mini
OPENAI_EMBEDDING_MODEL=text-embedding-3-small
OPENAI_EMBEDDING_DIMENSIONS=1536
# Optional server-side diagnostics for PDF extraction and retrieval. Keep disabled in normal use.
STUDYSTACK_RETRIEVAL_DEBUG=false