docs: add batch plugin installation guide to release workflow

- 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
This commit is contained in:
fujie
2026-03-09 21:58:11 +08:00
parent d569dc3ec9
commit 5dd9d6cc56
2 changed files with 40 additions and 0 deletions

View File

@@ -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 ## Author
Fu-Jie Fu-Jie

View File

@@ -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 Fu-Jie