-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (34 loc) · 1.66 KB
/
Copy path.env.example
File metadata and controls
46 lines (34 loc) · 1.66 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
36
37
38
39
40
41
42
43
44
45
46
# Feeds Environment Configuration
# Copy this file to .env and fill in your values
# =============================================================================
# REQUIRED - Authentication
# =============================================================================
# JWT secret for authentication (min 32 characters, generate with: openssl rand -base64 64)
JWT_SECRET=change-me-to-a-random-string-min-32-chars
# Password for first-time setup (you'll use this to create your admin account)
APP_PASSWORD=your-admin-password
# =============================================================================
# OPTIONAL - Features
# =============================================================================
# Google Gemini API Key for AI-powered feed discovery
# Get a key at https://aistudio.google.com/app/apikey
GEMINI_API_KEY=
# Daily Digest AI provider: gemini or groq (default: gemini)
DAILY_DIGEST_AI_PROVIDER=gemini
# Groq API Key for Daily Digest generation when provider is set to "groq"
# Get a key at https://console.groq.com/keys
GROQ_API_KEY=
# Groq model for Daily Digest generation
GROQ_MODEL=llama-3.3-70b-versatile
# YouTube Data API Key (improves YouTube channel info)
# Get a key at https://console.cloud.google.com/apis/credentials
YOUTUBE_API_KEY=
# =============================================================================
# OPTIONAL - Configuration
# =============================================================================
# Log level: debug, info, warn, error (default: info)
LOG_LEVEL=info
# CORS origin - set to your domain in production
# Example: CORS_ORIGIN=https://feeds.yourdomain.com
# Leave empty or set to true for development
CORS_ORIGIN=