- Remove old backend (transcription, translation, summarization) - Add Camoufox stealth cookie extraction - Add automatic cookie refresh (14 days) - Add cookie validation - Simplified to focus on YouTube → MP3 downloads - Auto-retry on bot detection - Streaming support with range requests - Clean architecture (services pattern) - Full documentation
18 lines
316 B
Plaintext
18 lines
316 B
Plaintext
# Server Configuration
|
|
PORT=8889
|
|
|
|
# Storage path for downloaded MP3 files
|
|
STORAGE_PATH=/var/hanasuba/music
|
|
|
|
# Python path (optional, default: python3)
|
|
PYTHON_PATH=python3
|
|
|
|
# yt-dlp path (optional, default: yt-dlp)
|
|
YTDLP_PATH=yt-dlp
|
|
|
|
# CORS (optional, default: *)
|
|
ALLOWED_ORIGINS=*
|
|
|
|
# Environment
|
|
NODE_ENV=production
|