-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
42 lines (32 loc) · 1.82 KB
/
.env.example
File metadata and controls
42 lines (32 loc) · 1.82 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
# ==============================================================================
# 🚀 VIDEO GENERATOR - EXAMPLE ENVIRONMENT CONFIGURATION
# ==============================================================================
# 🔑 API CREDENTIALS
# ------------------------------------------------------------------------------
# Pexels API: Recommended (Primary source for high-quality stock footage)
# Get a free key at: https://www.pexels.com/api/
PEXELS_API_KEY=your_pexels_api_key_here
# Pixabay API: Optional (Secondary fallback for stock images/videos)
# Get a free key at: https://pixabay.com/api/docs/
PIXABAY_API_KEY=your_pixabay_api_key_here
# Gemini API: Optional (Used for AI Director dynamic keyword optimization)
# Get a free key at: https://aistudio.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# 🌐 SERVER SETTINGS
# ------------------------------------------------------------------------------
# Default port for the local asset/API server
PORT=3001
# Recommended when deploying the portal publicly.
# Used for canonical URLs, sitemap.xml, robots.txt, and social metadata.
PUBLIC_BASE_URL=https://your-domain.example
# 🎬 DEFAULT VIDEO SPECIFICATIONS
# ------------------------------------------------------------------------------
# Default orientation (options: 'landscape' for 16:9 or 'portrait' for 9:16)
VIDEO_ORIENTATION=landscape
# AI Voice ID (Edge-TTS Neural Voice)
# 👨 Male: en-US-GuyNeural, en-US-ChristopherNeural, en-GB-RyanNeural, en-IN-PrabhatNeural
# 👩 Female: en-US-JennyNeural, en-US-AriaNeural, en-US-SaraNeural, en-GB-SoniaNeural
VIDEO_VOICE=en-US-GuyNeural
# ==============================================================================
# 👋 Tip: Copy this file to .env and fill in your actual API keys.
# ==============================================================================