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