imetting_backend/.env.example

34 lines
956 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# ==================== 数据库配置 ====================
# Docker环境使用容器名称
DB_HOST=10.100.51.51
DB_USER=root
DB_PASSWORD=Unis@123
DB_NAME=imeeting_dev
DB_PORT=3306
# ==================== Redis配置 ====================
# Docker环境使用容器名称
REDIS_HOST=10.100.51.51
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=Unis@123
# ==================== API配置 ====================
API_HOST=0.0.0.0
API_PORT=8001
# ==================== 应用配置 ====================
# 应用访问地址(用于生成外部链接、二维码等)
# 开发环境: http://localhost
# 生产环境: https://your-domain.com
BASE_URL=http://imeeting.unisspace.com
# ==================== LLM配置 ====================
# 通义千问API密钥请替换为实际密钥
QWEN_API_KEY=sk-c2bf06ea56b4491ea3d1e37fdb472b8f
# ==================== 转录轮询配置 ====================
TRANSCRIPTION_POLL_INTERVAL=10
TRANSCRIPTION_MAX_WAIT_TIME=1800