feat: add ImageFind application and release pipelines
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
[
|
||||
{
|
||||
"stepTitle": "ImageFind 访问方式",
|
||||
"items": [
|
||||
{
|
||||
"type": "tips",
|
||||
"helpText": "飞牛桌面始终通过统一网关访问。需要继续使用 http://NAS_IP:8765 或 REST API 客户端时,可额外开启直接访问。"
|
||||
},
|
||||
{
|
||||
"type": "switch",
|
||||
"field": "wizard_direct_access",
|
||||
"label": "启用直接 Web/API 访问",
|
||||
"initValue": "false"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"field": "wizard_direct_port",
|
||||
"label": "直接访问端口",
|
||||
"initValue": "8765",
|
||||
"rules": [
|
||||
{
|
||||
"required": true,
|
||||
"message": "请输入端口"
|
||||
},
|
||||
{
|
||||
"pattern": "^(?:[1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])$",
|
||||
"message": "请输入 1–65535 之间的端口"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,68 @@
|
||||
[
|
||||
{
|
||||
"stepTitle": "设置 ImageFind 管理员密码",
|
||||
"items": [
|
||||
{
|
||||
"type": "tips",
|
||||
"helpText": "此密码用于登录 ImageFind,不是飞牛 fnOS 的系统密码。请先安装并启动 nxsir.postgresql 共享服务。"
|
||||
},
|
||||
{
|
||||
"type": "password",
|
||||
"field": "wizard_postgres_enrollment_token",
|
||||
"label": "PostgreSQL 应用接入令牌",
|
||||
"rules": [
|
||||
{
|
||||
"required": true,
|
||||
"message": "请输入 PostgreSQL 共享服务的应用接入令牌"
|
||||
},
|
||||
{
|
||||
"min": 20,
|
||||
"message": "应用接入令牌至少需要 20 个字符"
|
||||
},
|
||||
{
|
||||
"max": 256,
|
||||
"message": "应用接入令牌不能超过 256 个字符"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "password",
|
||||
"field": "wizard_admin_password",
|
||||
"label": "管理员密码",
|
||||
"rules": [
|
||||
{
|
||||
"required": true,
|
||||
"message": "请输入管理员密码"
|
||||
},
|
||||
{
|
||||
"min": 10,
|
||||
"message": "管理员密码至少需要 10 个字符"
|
||||
},
|
||||
{
|
||||
"max": 256,
|
||||
"message": "管理员密码不能超过 256 个字符"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "password",
|
||||
"field": "wizard_admin_password_confirm",
|
||||
"label": "再次输入密码",
|
||||
"rules": [
|
||||
{
|
||||
"required": true,
|
||||
"message": "请再次输入管理员密码"
|
||||
},
|
||||
{
|
||||
"min": 10,
|
||||
"message": "管理员密码至少需要 10 个字符"
|
||||
},
|
||||
{
|
||||
"max": 256,
|
||||
"message": "管理员密码不能超过 256 个字符"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
[
|
||||
{
|
||||
"stepTitle": "卸载 ImageFind",
|
||||
"items": [
|
||||
{
|
||||
"type": "tips",
|
||||
"helpText": "默认保留数据库、索引和模型,方便以后重新安装。无论如何选择,都不会删除共享目录或其他资料库中的源视频。"
|
||||
},
|
||||
{
|
||||
"type": "switch",
|
||||
"field": "wizard_clear_data",
|
||||
"label": "清除应用内部数据",
|
||||
"initValue": "false",
|
||||
"helpText": "清除数据库、索引、缩略图、缓存、已下载模型、凭据和日志。"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,11 @@
|
||||
[
|
||||
{
|
||||
"stepTitle": "升级 ImageFind",
|
||||
"items": [
|
||||
{
|
||||
"type": "tips",
|
||||
"helpText": "升级会保留数据库、AI 索引、模型、访问配置和管理员密码。密码请在 ImageFind 个人中心内修改。"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user