-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
27 lines (21 loc) · 880 Bytes
/
env.example
File metadata and controls
27 lines (21 loc) · 880 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
##
## Required environment variables
## Copy this file to `.env.local` (kept out of git) and fill in the real values
## before running locally or deploying on Vercel.
##
# --- Supabase ---
NEXT_PUBLIC_SUPABASE_URL="https://your-project.supabase.co"
NEXT_PUBLIC_SUPABASE_ANON_KEY="supabase-anon-key"
# Base URLs used for redirects and canonical links
NEXT_PUBLIC_SITE_URL="https://your-production-domain.com"
NEXT_PUBLIC_BASE_URL="https://your-production-domain.com"
# --- Database ---
MONGODB_URI="mongodb+srv://user:password@cluster.mongodb.net/dbname"
# --- AI Providers (optional but recommended) ---
# Provide at least one key to enable the corresponding provider.
GEMINI_API_KEY="ai-provider-key"
GROQ_API_KEY="ai-provider-key"
XAI_API_KEY="ai-provider-key"
OPENAI_API_KEY="ai-provider-key"
# --- Misc ---
# Add any other secrets used in scripts or integrations below.