-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (19 loc) · 1 KB
/
Copy path.env.example
File metadata and controls
25 lines (19 loc) · 1 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
# Copy this file to `.env` and fill in your values.
#
# The frontend reads VITE_* vars at build/dev time. Anything not starting
# with VITE_ is NOT exposed to the browser — keep secrets there.
# --- Frontend ---------------------------------------------------------------
# Base URL of the FastAPI backend. If unset, the dashboard shows mock data
# and chat returns a stubbed answer so the UI is demoable end-to-end.
VITE_API_BASE=http://localhost:8000
# Optional: override the default app title shown in the header / tab.
VITE_APP_TITLE=VidSage
# --- Backend ----------------------------------------------------------------
# These are read by src/backend/app.py (via os.environ / .env loader).
# DO NOT commit a real `.env` — it's already in .gitignore.
# OpenAI / Gemini / whichever provider app.py is wired to.
OPENAI_API_KEY=
# GOOGLE_API_KEY=
# Where FAISS vector stores are cached on disk (created if missing).
# Default: ./vector_store_cache (relative to src/backend/).
VECTOR_STORE_DIR=./vector_store_cache