Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/halo-sigs/plugin-migrate
支持多种平台的数据迁移插件
https://github.com/halo-sigs/plugin-migrate
halo halo-plugin
Last synced: 7 days ago
JSON representation
支持多种平台的数据迁移插件
- Host: GitHub
- URL: https://github.com/halo-sigs/plugin-migrate
- Owner: halo-sigs
- License: gpl-3.0
- Created: 2022-10-17T14:22:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-22T03:29:45.000Z (4 months ago)
- Last Synced: 2024-08-02T06:16:50.926Z (3 months ago)
- Topics: halo, halo-plugin
- Language: TypeScript
- Homepage: https://halo.run/store/apps/app-TlUBt
- Size: 7.06 MB
- Stars: 8
- Watchers: 2
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-halo - plugin-migrate - 支持从 Halo 1.5/1.6 迁移数据(WIP) (Halo 2.0 / 插件)
README
# plugin-migrate
支持从其他平台迁移数据到 Halo 的插件。
![Screenshot](./docs/img/screenshot.png)
目前已支持以下平台:
1. Halo 1.5 / 1.6
2. [WordPress](https://wordpress.org/)
3. RSS / Atom 订阅链接
4. [Hugo](https://gohugo.io/)
5. [Ghost](https://ghost.org/)## 使用方式
1. 下载,目前提供以下两个下载方式:
- GitHub Releases:访问 [Releases](https://github.com/halo-sigs/plugin-migrate/releases) 下载 Assets 中的 JAR 文件。
- Halo 应用市场:
2. 安装,插件安装和更新方式可参考:
3. 启动插件之后,即可在 Console 的左侧菜单栏看到 **迁移** 的菜单。> **Warning**
> 详细的迁移文档请查阅## 开发环境
插件开发的详细文档请查阅:
所需环境:
1. Java 17
2. Node 18
3. pnpm 8
4. Docker (可选)克隆项目:
```bash
git clone [email protected]:halo-sigs/plugin-migrate.git# 或者当你 fork 之后
git clone [email protected]:{your_github_id}/plugin-migrate.git
``````bash
cd path/to/plugin-migrate
```### 运行方式 1(推荐)
> 此方式需要本地安装 Docker
```bash
# macOS / Linux
./gradlew pnpmInstall# Windows
./gradlew.bat pnpmInstall
``````bash
# macOS / Linux
./gradlew haloServer# Windows
./gradlew.bat haloServer
```执行此命令后,会自动创建一个 Halo 的 Docker 容器并加载当前的插件,更多文档可查阅:
### 运行方式 2
> 此方式需要使用源码运行 Halo
编译插件:
```bash
# macOS / Linux
./gradlew build# Windows
./gradlew.bat build
```修改 Halo 配置文件:
```yaml
halo:
plugin:
runtime-mode: development
fixedPluginPath:
- "/path/to/plugin-migrate"
```最后重启 Halo 项目即可。