22 lines
534 B
Bash
22 lines
534 B
Bash
# 数据库配置
|
||
DB_HOST=localhost
|
||
DB_PORT=33306
|
||
DB_USER=root
|
||
DB_PASSWORD=123456
|
||
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
|