23 lines
517 B
Plaintext
23 lines
517 B
Plaintext
|
|
# CoolBotDataSys 环境变量配置示例
|
||
|
|
# 复制为 .env 后填入实际值
|
||
|
|
|
||
|
|
# 数据库
|
||
|
|
DB_HOST=pgm-bp1t1008h019ez6c.pg.rds.aliyuncs.com
|
||
|
|
DB_PORT=5432
|
||
|
|
DB_USER=coolbot
|
||
|
|
DB_PASSWORD=your_password_here
|
||
|
|
DB_NAME=coolbot_data
|
||
|
|
|
||
|
|
# Redis
|
||
|
|
REDIS_HOST=127.0.0.1
|
||
|
|
REDIS_PORT=6379
|
||
|
|
REDIS_DB=0
|
||
|
|
|
||
|
|
# LLM (阿里云百炼)
|
||
|
|
LLM_API_KEY=your_api_key_here
|
||
|
|
LLM_API_URL=https://coding.dashscope.aliyuncs.com/v1/chat/completions
|
||
|
|
LLM_MODEL=qwen3.5-plus
|
||
|
|
|
||
|
|
# CORS 白名单 (逗号分隔)
|
||
|
|
CORS_ORIGINS=http://47.98.171.101,http://47.98.171.101:80
|