refactor: 去除 tailchat 部分安装参数

This commit is contained in:
wanghe-fit2cloud 2023-12-07 17:21:42 +08:00
parent ebb66532a6
commit fc534a566c
6 changed files with 18 additions and 44 deletions

View File

@ -16,7 +16,7 @@ additionalProperties:
type: tool type: tool
crossVersionUpdate: true crossVersionUpdate: true
limit: 0 limit: 0
recommend: 10 recommend: 11
website: https://alist.nn.ci/ website: https://alist.nn.ci/
github: https://github.com/alist-org/alist github: https://github.com/alist-org/alist
document: https://alist.nn.ci/zh/guide/ document: https://alist.nn.ci/zh/guide/

View File

@ -1,20 +1,20 @@
name: Gitea name: Gitea
tags: tags:
- DevOps - DevOps
title: 自托管的 Git 服务 title: 新一代的代码托管平台
type: DevOps type: DevOps
description: 自托管的 Git 服务 description: 新一代的代码托管平台
additionalProperties: additionalProperties:
key: gitea key: gitea
name: Gitea name: Gitea
tags: tags:
- DevOps - DevOps
shortDescZh: 自托管的 Git 服务 shortDescZh: 新一代的代码托管平台
shortDescEn: a self-hosted Git service shortDescEn: The next generation of code hosting platform
type: tool type: tool
crossVersionUpdate: false crossVersionUpdate: false
limit: 0 limit: 0
recommend: 0 recommend: 10
website: https://gitea.io/ website: https://gitea.io/
github: https://github.com/go-gitea/gitea github: https://github.com/go-gitea/gitea
document: https://docs.gitea.io/ document: https://docs.gitea.io/

View File

@ -14,7 +14,7 @@ additionalProperties:
type: tool type: tool
crossVersionUpdate: false crossVersionUpdate: false
limit: 1 limit: 1
recommend: 12 recommend: 13
website: https://sftpgo.com/ website: https://sftpgo.com/
github: https://github.com/drakkan/sftpgo/ github: https://github.com/drakkan/sftpgo/
document: https://github.com/drakkan/sftpgo/blob/main/docs/howto/getting-started.md document: https://github.com/drakkan/sftpgo/blob/main/docs/howto/getting-started.md

View File

@ -10,27 +10,17 @@ additionalProperties:
type: number type: number
- default: "" - default: ""
edit: true edit: true
envKey: REDIS_HOST envKey: PANEL_DB_HOST
key: redis key: redis
labelEn: Redis Service labelEn: Redis Service
labelZh: 缓存服务服务 labelZh: 缓存服务服务
required: true required: true
type: service type: service
- default: "6379"
edit: true
envKey: REDIS_PORT
labelEn: Redis Service Port
labelZh: 缓存服务服务端口
required: true
rule: paramPort
type: number
- default: "" - default: ""
edit: true envKey: PANEL_REDIS_ROOT_PASSWORD
envKey: REDIS_PASS
labelEn: Redis Service Password labelEn: Redis Service Password
labelZh: 缓存服务服务密码 labelZh: 缓存服务服务密码
required: true required: true
rule: paramCommon
type: password type: password
- default: "" - default: ""
edit: true edit: true
@ -40,14 +30,6 @@ additionalProperties:
labelZh: 数据库服务 labelZh: 数据库服务
required: true required: true
type: service type: service
- default: "27017"
edit: true
envKey: MONGO_PORT
labelEn: Database Service Port
labelZh: 数据库服务端口
required: true
rule: paramPort
type: number
- default: tailchat - default: tailchat
edit: true edit: true
envKey: MONGO_DB envKey: MONGO_DB
@ -80,14 +62,6 @@ additionalProperties:
labelZh: 文件存储服务 labelZh: 文件存储服务
required: true required: true
type: service type: service
- default: "9001"
edit: true
envKey: MINIO_PORT
labelEn: Storage Service Port
labelZh: 文件存储服务API端口
required: true
rule: paramPort
type: number
- default: "" - default: ""
edit: true edit: true
envKey: MINIO_USER envKey: MINIO_USER

View File

@ -11,10 +11,10 @@ services:
- LOGGER=true - LOGGER=true
- LOGLEVEL=info - LOGLEVEL=info
- PORT=11000 - PORT=11000
- REDIS_URL=redis://:${REDIS_PASS}@${REDIS_HOST}:${REDIS_PORT} - REDIS_URL=redis://:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_DB_HOST}:6379
- TRANSPORTER=redis://:${REDIS_PASS}@${REDIS_HOST}:${REDIS_PORT} - TRANSPORTER=redis://:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_DB_HOST}:6379
- MONGO_URL=mongodb://${MONGO_USER}:${MONGO_PASS}@${MONGO_HOST}:${MONGO_PORT}/${MONGO_DB}?authSource=admin - MONGO_URL=mongodb://${MONGO_USER}:${MONGO_PASS}@${MONGO_HOST}:27017/${MONGO_DB}?authSource=admin
- MINIO_URL=${MINIO_HOST}:${MINIO_PORT} - MINIO_URL=${MINIO_HOST}:9001
- MINIO_USER=${MINIO_USER} - MINIO_USER=${MINIO_USER}
- MINIO_PASS=${MINIO_PASS} - MINIO_PASS=${MINIO_PASS}
- SMTP_SENDER=${SMTP_SENDER} - SMTP_SENDER=${SMTP_SENDER}
@ -37,10 +37,10 @@ services:
- ADMIN_PASS=${ADMIN_PASSWORD} - ADMIN_PASS=${ADMIN_PASSWORD}
- LOGGER=true - LOGGER=true
- LOGLEVEL=info - LOGLEVEL=info
- REDIS_URL=redis://:${REDIS_PASS}@${REDIS_HOST}:${REDIS_PORT} - REDIS_URL=redis://:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_DB_HOST}:6379
- TRANSPORTER=redis://:${REDIS_PASS}@${REDIS_HOST}:${REDIS_PORT} - TRANSPORTER=redis://:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_DB_HOST}:6379
- MONGO_URL=mongodb://${MONGO_USER}:${MONGO_PASS}@${MONGO_HOST}:${MONGO_PORT}/${MONGO_DB}?authSource=admin - MONGO_URL=mongodb://${MONGO_USER}:${MONGO_PASS}@${MONGO_HOST}:27017/${MONGO_DB}?authSource=admin
- MINIO_URL=${MINIO_HOST}:${MINIO_PORT} - MINIO_URL=${MINIO_HOST}:9001
- MINIO_USER=${MINIO_USER} - MINIO_USER=${MINIO_USER}
- MINIO_PASS=${MINIO_PASS} - MINIO_PASS=${MINIO_PASS}
- SMTP_SENDER=${SMTP_SENDER} - SMTP_SENDER=${SMTP_SENDER}

View File

@ -14,7 +14,7 @@ additionalProperties:
type: tool type: tool
crossVersionUpdate: true crossVersionUpdate: true
limit: 0 limit: 0
recommend: 11 recommend: 12
website: https://www.zentao.net/index.html website: https://www.zentao.net/index.html
github: https://github.com/easysoft/zentaopms github: https://github.com/easysoft/zentaopms
document: https://www.zentao.net/book/zentaopms/38.html document: https://www.zentao.net/book/zentaopms/38.html