From 5dd9d6cc568465d812752cfefed135e275af1317 Mon Sep 17 00:00:00 2001 From: fujie Date: Mon, 9 Mar 2026 21:58:11 +0800 Subject: [PATCH] docs: add batch plugin installation guide to release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add 'Installing All Plugins to Your Instance' section to release-workflow.md - Add '批量安装所有插件到你的实例' section to release-workflow.zh.md - Include quick start steps for installing all plugins after release - Direct users to deployment guide for detailed instructions --- docs/release-workflow.md | 20 ++++++++++++++++++++ docs/release-workflow.zh.md | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/docs/release-workflow.md b/docs/release-workflow.md index d493f23..434f24a 100644 --- a/docs/release-workflow.md +++ b/docs/release-workflow.md @@ -187,6 +187,26 @@ python scripts/extract_plugin_versions.py --json --output versions.json --- +## Installing All Plugins to Your Instance + +After a release, you can quickly install all plugins to your local OpenWebUI instance: + +```bash +# Clone the repository +git clone https://github.com/Fu-Jie/openwebui-extensions.git +cd openwebui-extensions + +# Create .env file with your API key +echo "api_key=sk-your-api-key-here" > scripts/.env + +# Install all plugins at once +python scripts/install_all_plugins.py +``` + +For detailed instructions, see [Deployment Guide](./scripts/DEPLOYMENT_GUIDE.md). + +--- + ## Author Fu-Jie diff --git a/docs/release-workflow.zh.md b/docs/release-workflow.zh.md index 036d368..f432cb2 100644 --- a/docs/release-workflow.zh.md +++ b/docs/release-workflow.zh.md @@ -185,6 +185,26 @@ python scripts/extract_plugin_versions.py --json --output versions.json --- +## 批量安装所有插件到你的实例 + +在发布之后,你可以快速将所有插件安装到本地 OpenWebUI 实例: + +```bash +# 克隆仓库 +git clone https://github.com/Fu-Jie/openwebui-extensions.git +cd openwebui-extensions + +# 创建 .env 文件并配置 API 密钥 +echo "api_key=sk-your-api-key-here" > scripts/.env + +# 一次性安装所有插件 +python scripts/install_all_plugins.py +``` + +详细说明请参考 [部署指南](./scripts/DEPLOYMENT_GUIDE.md)。 + +--- + ## 作者 Fu-Jie