支持从其他平台的评论迁移数据到 Halo 的插件。
目前已支持以下平台:
- 下载,目前提供以下两个下载方式:
- GitHub Releases:访问 Releases 下载 Assets 中的 JAR 文件。
- 安装,插件安装和更新方式可参考:https://docs.halo.run/user-guide/plugins
- 启动插件之后,即可在 Console 的左侧菜单栏看到 工具 的里的 评论迁移。
详细的评论迁移文档请查阅 https://docs.kunkunyu.com/docs/plugin-comment-migrate
插件开发的详细文档请查阅:https://docs.halo.run/developer-guide/plugin/introduction
所需环境:
- Java 17
- Node 20
- pnpm 9
- Docker (可选)
克隆项目:
git clone git@github.com:chengzhongxue/plugin-comment-migrate.git
# 或者当你 fork 之后
git clone git@github.com:{your_github_id}/plugin-comment-migrate.git
cd path/to/plugin-comment-migrate
此方式需要本地安装 Docker
# macOS / Linux
./gradlew pnpmInstall
# Windows
./gradlew.bat pnpmInstall
# macOS / Linux
./gradlew haloServer
# Windows
./gradlew.bat haloServer
执行此命令后,会自动创建一个 Halo 的 Docker 容器并加载当前的插件,更多文档可查阅:https://docs.halo.run/developer-guide/plugin/basics/devtools
此方式需要使用源码运行 Halo
编译插件:
# macOS / Linux
./gradlew build
# Windows
./gradlew.bat build
修改 Halo 配置文件:
halo:
plugin:
runtime-mode: development
fixedPluginPath:
- "/path/to/plugin-comment-migrate"
最后重启 Halo 项目即可。