22 lines
572 B
Bash
22 lines
572 B
Bash
# 数据库配置
|
||
DB_HOST=pc-3nsh5mzbet7w5l890.rwlb.rds.aliyuncs.com
|
||
DB_PORT=3306
|
||
DB_USER=u1admin
|
||
DB_PASSWORD=6y6K!aFg
|
||
DB_NAME=employee_performance
|
||
|
||
# JWT 配置
|
||
JWT_SECRET=dev_jwt_secret_please_change_in_production
|
||
|
||
# FastGPT API 配置
|
||
FASTGPT_API_KEY=fastgpt-oEipxYa5BfVaeGDj74iAXi8YSkWyye07lTNYuj7yydsEKAc4Hp2Z2RDbxsxc4TuZ
|
||
FASTGPT_API_URL=https://cloud.fastgpt.cn/api/v1/chat/completions
|
||
FASTGPT_MODEL=gpt-4
|
||
|
||
# 代理配置(Node.js 不自动读取系统代理,需手动配置)
|
||
#HTTPS_PROXY=http://127.0.0.1:7890
|
||
|
||
# 服务器配置
|
||
PORT=3001
|
||
NODE_ENV=development
|