- Add audio file upload transcription via Dify STT API - Implement VAD-based audio segmentation in sidecar (3-min chunks) - Add SSE endpoint for real-time transcription progress updates - Fix chunk size enforcement for reliable uploads - Add retry logic with exponential backoff for API calls - Support Python 3.13+ with audioop-lts package - Update frontend with Chinese progress messages and chunk display - Improve start.sh health check with retry loop 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
390 B
Plaintext
17 lines
390 B
Plaintext
# Database Configuration
|
|
DB_HOST=mysql.theaken.com
|
|
DB_PORT=33306
|
|
DB_USER=A060
|
|
DB_PASS=your_password_here
|
|
DB_NAME=db_A060
|
|
|
|
# External APIs
|
|
AUTH_API_URL=https://pj-auth-api.vercel.app/api/auth/login
|
|
DIFY_API_URL=https://dify.theaken.com/v1
|
|
DIFY_API_KEY=app-xxxxxxxxxxx
|
|
DIFY_STT_API_KEY=app-xxxxxxxxxxx
|
|
|
|
# Application Settings
|
|
ADMIN_EMAIL=ymirliu@panjit.com.tw
|
|
JWT_SECRET=your_jwt_secret_here
|