# 음성 검증 앱 환경 변수 설정 # .env 파일로 복사해서 사용하세요: cp .env.example .env # ========== STT 설정 ========== # STT 제공자 선택: 'openai', 'google', 'azure', 'mock' STT_PROVIDER=mock # ========== OpenAI Whisper ========== # OpenAI API 키 (https://platform.openai.com/api-keys) # OPENAI_API_KEY=sk-your-api-key-here # ========== Google Speech-to-Text ========== # Google Cloud 인증 JSON 파일 경로 # GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json # ========== Azure Speech Service ========== # Azure Speech Service 키 및 리전 # AZURE_SPEECH_KEY=your-azure-key # AZURE_SPEECH_REGION=koreacentral # Full Database URL DATABASE_URL= AI_SERVER_URL= # Google Gemini API for LLM GOOGLE_API_KEY= # ========== 서버 설정 ========== # 서버 호스트 (0.0.0.0 = 모든 인터페이스) SERVER_HOST=0.0.0.0 # 백엔드 포트 (FastAPI) BACKEND_PORT=8000 # 프론트엔드 포트 (Gradio) FRONTEND_PORT=7860 # Backend API URL (기본값: http://localhost:BACKEND_PORT) # BACKEND_API_URL=http://localhost:8002 GRADIO_SHARE=false # ========== 개발 모드 ========== DEBUG=false