-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (28 loc) · 1.95 KB
/
.env.example
File metadata and controls
35 lines (28 loc) · 1.95 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
30
31
32
33
34
35
# ──────────────────────────────────────────────
# StreamMind AI — Environment Configuration
# ──────────────────────────────────────────────
# Copy this file to .env and fill in the values.
# NEVER commit the .env file to version control.
# ──────────────────────────────────────────────
# ─── Server ───────────────────────────────────
PORT=3001
HOST=0.0.0.0
NODE_ENV=development
# ─── Database ─────────────────────────────────
DATABASE_URL=postgresql://user:password@localhost:5432/streammind
# ─── Redis (optional — for caching layer) ─────
# REDIS_URL=redis://localhost:6379
# ─── TMDB ─────────────────────────────────────
TMDB_API_KEY=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJhZGNmYWYyYmE5NTMxZmU0ZWQ5ODY3MTllY2M4NzE4NiIsIm5iZiI6MTc3MTQ0NzgzNy41OTgsInN1YiI6IjY5OTYyNjFkNDUxOTU1ZWM2NDI4OGRjNiIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.e4rvKZhInf_xKiryhEQapN4fW3kHc_VJlkjHZBNyWrM
TMDB_BASE_URL=https://api.themoviedb.org/3
# ─── LLM (Server-side fallback — optional) ────
# These are NOT required. Users provide their
# own keys via BYOK in the extension.
# OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...
# ─── Security ─────────────────────────────────
CORS_ORIGIN=chrome-extension://*
RATE_LIMIT_MAX=100
RATE_LIMIT_WINDOW_MS=60000
# ─── Logging ──────────────────────────────────
LOG_LEVEL=info