21 lines
452 B
Plaintext
21 lines
452 B
Plaintext
# 数据库配置
|
||
DB_HOST=localhost
|
||
DB_PORT=3306
|
||
DB_USER=root
|
||
DB_PASSWORD=your_password
|
||
DB_NAME=ai_nav
|
||
|
||
# 安全配置
|
||
SECRET_KEY=your-secret-key-here
|
||
|
||
# 运行环境 (development/production)
|
||
FLASK_ENV=development
|
||
|
||
# DeepSeek API配置
|
||
DEEPSEEK_API_KEY=your_deepseek_api_key_here
|
||
DEEPSEEK_BASE_URL=https://api.deepseek.com
|
||
|
||
# 博查 Web Search API配置(用于新闻搜索)
|
||
BOCHA_API_KEY=your_bocha_api_key_here
|
||
BOCHA_BASE_URL=https://api.bocha.cn
|