Files
2026-04-12 11:53:28 +08:00

22 lines
534 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 数据库配置
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