-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (20 loc) · 990 Bytes
/
.env.example
File metadata and controls
28 lines (20 loc) · 990 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
# Set to true to use Supabase repos instead of in-memory (Stage 1+)
VITE_USE_SUPABASE=false
# Supabase local (from `supabase start`)
VITE_SUPABASE_URL=http://127.0.0.1:54321
VITE_SUPABASE_ANON_KEY=your-local-anon-key-here
# Proxy URL — the local Express proxy used for AI and job search calls (npm run proxy)
VITE_PROXY_URL=http://localhost:3001
# --- Proxy-only variables (Node server — never exposed to the browser) ---
# Adzuna job search — https://developer.adzuna.com
ADZUNA_APP_ID=your-adzuna-app-id
ADZUNA_APP_KEY=your-adzuna-app-key
# Gemini AI — https://aistudio.google.com
GEMINI_API_KEY=your-gemini-api-key
# Gemini model to use (default: gemini-3.1-flash-lite-preview)
GEMINI_MODEL=gemini-3.1-flash-lite-preview
# Tavily — job enrichment — https://tavily.com
TAVILY_API_KEY=your-tavily-api-key
# CORS allowed origin for the proxy (default: http://localhost:5173)
# Set this to your production frontend URL when deploying
ALLOWED_ORIGIN=http://localhost:5173