-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
99 lines (72 loc) · 2.66 KB
/
.env.example
File metadata and controls
99 lines (72 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# VOIDSTUDIO Environment Variables
# Copy this file to .env.local and fill in the values
# =============================================================================
# LLM Providers
# =============================================================================
# Anthropic Claude (Required for Director agent)
ANTHROPIC_API_KEY=
# OpenAI (For TTS, DALL-E, GPT fallback)
OPENAI_API_KEY=
# =============================================================================
# Voice Providers
# =============================================================================
# ElevenLabs (Recommended for high-quality voice)
ELEVENLABS_API_KEY=
# =============================================================================
# Video Generation
# =============================================================================
# Runway ML
RUNWAY_API_KEY=
# Replicate (For various models)
REPLICATE_API_KEY=
# Google Cloud (For Veo)
GCP_PROJECT_ID=
GOOGLE_APPLICATION_CREDENTIALS=
# =============================================================================
# Avatar Providers
# =============================================================================
# HeyGen
HEYGEN_API_KEY=
# D-ID
DID_API_KEY=
# =============================================================================
# Music Generation (Unofficial APIs)
# =============================================================================
# Suno (Cookie-based auth)
SUNO_COOKIE=
# =============================================================================
# Cloud Storage (Optional)
# =============================================================================
# Cloudflare R2
R2_ACCOUNT_ID=
R2_ACCESS_KEY_ID=
R2_SECRET_ACCESS_KEY=
R2_BUCKET_NAME=
# AWS S3 (Alternative)
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=
S3_BUCKET_NAME=
# =============================================================================
# Database
# =============================================================================
# SQLite (default, no config needed)
DATABASE_URL=file:./data/voidstudio.db
# =============================================================================
# Application Settings
# =============================================================================
# Logging level (debug, info, warn, error)
LOG_LEVEL=info
# Output directory for generated videos
OUTPUT_DIR=./output
# Temp directory for intermediate files
TEMP_DIR=./tmp
# Maximum concurrent jobs
MAX_CONCURRENT_JOBS=3
# =============================================================================
# Development
# =============================================================================
# Enable debug mode
DEBUG=false
# Disable telemetry
DISABLE_TELEMETRY=true