-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 797 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 797 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
28
# TubeFocus Backend API Configuration
# Copy this file to .env and fill in your actual API keys
# ===== API Keys =====
# Get your YouTube Data API v3 key from: https://console.cloud.google.com/apis/credentials
YOUTUBE_API_KEY=your_youtube_api_key_here
# Get your Google Gemini API key from: https://makersuite.google.com/app/apikey
GOOGLE_API_KEY=your_google_api_key_here
# Your custom API key for securing endpoints (change this!)
API_KEY=your_secure_api_key_here
# ===== Application Settings =====
MIN_FEEDBACK=5
PORT=8080
# ===== Environment =====
ENVIRONMENT=development
DEBUG=True
# ===== Redis Configuration (Optional - for caching) =====
REDIS_HOST=your_redis_host_here
REDIS_PORT=6379
REDIS_DB=0
REDIS_USERNAME=default
REDIS_PASSWORD=your_redis_password_here
CACHE_TTL_SECONDS=86400