-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
82 lines (65 loc) · 2.46 KB
/
Copy path.env.example
File metadata and controls
82 lines (65 loc) · 2.46 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
# ════════════════════════════════════════════════
# 🔐 Environment Variables — Hybrid Audio MVP
# v4.0 NDF — Safe Example File (No Secrets Included)
# ════════════════════════════════════════════════
# ───────────────
# 🧠 Cartesia API Access
# ───────────────
CARTESIA_API_KEY=
CARTESIA_URL=https://api.cartesia.ai/v1/generate
CARTESIA_API_URL=https://api.cartesia.ai/tts/bytes
CARTESIA_VERSION=2024-06-10
MODEL_ID=sonic-3
# ───────────────
# 🎙️ Voice Configuration
# ───────────────
VOICE_ID=
VOICE_MODEL=sonic3-luis
AUDIO_FORMAT=wav
# ───────────────
# 🎧 Audio & Assembly
# ───────────────
CROSSFADE_MS=30
LUFS_TARGET=-16
SAMPLE_RATE=44100
BIT_DEPTH=16
ENABLE_SEMANTIC_TIMING=true
IN_MEMORY_ASSEMBLY=false
SAFE_GAIN_DB=-1.0
# ───────────────
# 🧩 Cache & Debugging
# ───────────────
CACHE_TTL_DAYS=30
DEBUG=true
# Standard repo paths (do not change unless necessary)
STEMS_DIR=/app/stems
OUTPUT_DIR=/app/output
COMMON_NAMES_FILE=/app/data/common_names.json
DEVELOPER_NAMES_FILE=/app/data/developer_names.json
# ───────────────
# ☁️ Google Cloud Storage
# ───────────────
GCS_BUCKET=
GCS_FOLDER_STEMS=stems
GCS_FOLDER_OUTPUTS=outputs
PUBLIC_ACCESS=true
GOOGLE_APPLICATION_CREDENTIALS=
# ───────────────
# 🩺 Observability & Logs
# ───────────────
LOG_LEVEL=INFO
LOG_DIR=./logs
ENABLE_STRUCTURED_LOGS=true
REQUEST_TRACE=true
ENABLE_REQUEST_ID=true
# ───────────────
# 🧩 Local Development Flags
# ───────────────
MODE=DEV
ALLOW_CORS=true
PORT=8000
HOST=0.0.0.0
# ════════════════════════════════════════════════
# This is an example template – no secrets included.
# Copy to .env and fill in your secure values.
# ════════════════════════════════════════════════