feat: Drama Studio 프로젝트 초기 구조 설정
- FastAPI 백엔드 (audio-studio-api) - Next.js 프론트엔드 (audio-studio-ui) - Qwen3-TTS 엔진 (audio-studio-tts) - MusicGen 서비스 (audio-studio-musicgen) - Docker Compose 개발/운영 환경 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
24
.env.example
Normal file
24
.env.example
Normal file
@ -0,0 +1,24 @@
|
||||
# Audio Studio 환경 변수
|
||||
|
||||
# MongoDB
|
||||
MONGO_USER=admin
|
||||
MONGO_PASSWORD=your-mongo-password
|
||||
|
||||
# Redis
|
||||
REDIS_URL=redis://redis:6379
|
||||
|
||||
# Hugging Face (모델 다운로드용)
|
||||
HF_TOKEN=your-huggingface-token
|
||||
|
||||
# Freesound API (https://freesound.org/apiv2/apply 에서 발급)
|
||||
FREESOUND_API_KEY=your-freesound-api-key
|
||||
|
||||
# 서비스 URL (내부 통신용)
|
||||
TTS_ENGINE_URL=http://tts-engine:8001
|
||||
MUSICGEN_URL=http://musicgen:8002
|
||||
|
||||
# 데이터베이스
|
||||
DB_NAME=audio_studio
|
||||
|
||||
# JWT (추후 인증용)
|
||||
JWT_SECRET_KEY=your-secret-key-change-in-production
|
||||
Reference in New Issue
Block a user