-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
29 lines (22 loc) · 1.01 KB
/
.env.example
File metadata and controls
29 lines (22 loc) · 1.01 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
# ==============================================================
# LeafLine Environment Variables
# ==============================================================
# Copy this file to .env and fill in the values.
# NEVER commit .env to version control.
# ---- Supabase (frontend) ------------------------------------
NEXT_PUBLIC_SUPABASE_URL="https://YOUR_PROJECT.supabase.co"
NEXT_PUBLIC_SUPABASE_ANON_KEY="your-anon-key-here"
# ---- Seva Chatbot Backend -----------------------------------
# Get your key at https://console.groq.com/
GROQ_API_KEY="your-groq-api-key-here"
# "development" | "production"
ENVIRONMENT="development"
# Port the backend listens on (Railway sets this automatically)
# PORT=8000
# Max chat requests per IP per minute (default 30)
# RATE_LIMIT_PER_MINUTE=30
# ---- Frontend: Backend URL ----------------------------------
# For local development:
NEXT_PUBLIC_BACKEND_URL="http://localhost:8000"
# For production (uncomment when deploying):
# NEXT_PUBLIC_BACKEND_URL="https://api.leafline.perkkk.dev"