18 lines
605 B
Bash
18 lines
605 B
Bash
# DeepSeek API配置
|
|
DEEPSEEK_API_KEY=sk-your_actual_api_key_here
|
|
DEEPSEEK_BASE_URL=https://api.deepseek.com/v1
|
|
|
|
# Tushare配置(可选)
|
|
TUSHARE_TOKEN=your_tushare_token_here
|
|
|
|
# 使用方法:
|
|
# 1. 将此文件复制为 .env
|
|
# 2. 在 .env 文件中填写真实的API密钥
|
|
# 3. 确保 .env 文件不被提交到版本控制系统
|
|
# 邮件通知配置
|
|
EMAIL_ENABLED=true
|
|
SMTP_SERVER=smtp.qq.com # 或 smtp.163.com, smtp.gmail.com 等
|
|
SMTP_PORT=587
|
|
EMAIL_FROM=your_email@qq.com
|
|
EMAIL_PASSWORD=your_app_password # 注意:不是邮箱登录密码,是应用专用密码
|
|
EMAIL_TO=receiver@example.com |