GH/.env.example
AI Developer 2ec2c0a1ab feat: 完整的数据提取与转换器项目
- 添加MDF文件导出功能
- 集成阿里云OCR大模型识别
- 添加百度智能云AI照片评分
- 集成DeepSeek大模型创意文案生成
- 完善文档和配置管理
- 使用uv进行现代化依赖管理
- 添加完整的.gitignore配置
2026-01-08 20:25:49 +08:00

35 lines
942 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 数据提取与转换器 - 环境变量配置示例
# Flask应用密钥生产环境请修改
SECRET_KEY=your-secret-key-here
# Tesseract OCR路径Windows系统需要设置
TESSERACT_PATH=C:\\Program Files\\Tesseract-OCR\\tesseract.exe
# 数据库连接(可选)
DATABASE_URI=sqlite:///data.db
# MySQL数据库配置示例
# DATABASE_URI=mysql+pymysql://username:password@localhost/database_name
# 阿里云OCR配置
ALIYUN_ACCESS_KEY_ID=your-aliyun-access-key-id
ALIYUN_ACCESS_KEY_SECRET=your-aliyun-access-key-secret
# 百度智能云配置(图像分析)
BAIDU_API_KEY=your-baidu-api-key
BAIDU_SECRET_KEY=your-baidu-secret-key
# DeepSeek大模型配置创意文案生成
DEEPSEEK_API_KEY=your-deepseek-api-key
# 阿里云DashScope配置备用文案生成
DASHSCOPE_API_KEY=your-dashscope-api-key
# 照片建议生成配置
PHOTO_ADVICE_ENABLED=true
# 应用配置
DEBUG=false
HOST=0.0.0.0
PORT=5000