mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
# 运行端口,如果不是 3000 口运行,需要改成其他的。注意:不是改了这个变量就会变成其他端口,而是因为改成其他端口,才用这个变量。
|
||
PORT=3000
|
||
# database max link
|
||
DB_MAX_LINK=5
|
||
# 代理
|
||
# AXIOS_PROXY_HOST=127.0.0.1
|
||
# AXIOS_PROXY_PORT=7890
|
||
# email
|
||
MY_MAIL=xxxx@qq.com
|
||
MAILE_CODE=xxxx
|
||
# ali ems
|
||
aliAccessKeyId=xxxx
|
||
aliAccessKeySecret=xxxx
|
||
aliSignName=xxxx
|
||
aliTemplateCode=xxxx
|
||
# token
|
||
TOKEN_KEY=dfdasfdas
|
||
# root key, 最高权限
|
||
ROOT_KEY=fdafasd
|
||
# 使用 oneapi
|
||
# ONEAPI_URL=https://xxxx.cloud.sealos.io/v1
|
||
# ONEAPI_KEY=sk-xxxx
|
||
# openai 的基本地址(国外的可以忽略,默认走 api.openai.com)。不用 oneapi 的话需要下面 2 个参数,用户的 key 也会走下面的参数
|
||
OPENAI_BASE_URL=https://xxxx.cloud.sealos.io/openai/v1
|
||
OPENAIKEY=sk-xxxx
|
||
# db
|
||
MONGODB_URI=mongodb://username:password@0.0.0.0:27017/?authSource=admin
|
||
MONGODB_NAME=fastgpt
|
||
PG_HOST=0.0.0.0
|
||
PG_PORT=8100
|
||
PG_USER=root
|
||
PG_PASSWORD=psw
|
||
PG_DB_NAME=dbname |