2018-12-21 11:50:10 +00:00
|
|
|
|
![](https://i.loli.net/2018/12/21/5c1cd34849751.png)
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
> Halo 可能是最好的 Java 博客系统。
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
<p align="center">
|
|
|
|
|
<a href="https://ryanc.cc"><img alt="Author" src="https://img.shields.io/badge/author-ruibaby-red.svg?style=flat-square"/></a>
|
2018-12-15 10:56:19 +00:00
|
|
|
|
<a href="#"><img alt="JDK" src="https://img.shields.io/badge/JDK-1.8-yellow.svg?style=flat-square"/></a>
|
2018-12-15 10:53:54 +00:00
|
|
|
|
<a href="https://github.com/ruibaby/halo/releases"><img alt="GitHub release" src="https://img.shields.io/github/release/ruibaby/halo.svg?style=flat-square"/></a>
|
|
|
|
|
<a href="https://travis-ci.org/ruibaby/halo"><img alt="Travis CI" src="https://img.shields.io/travis/ruibaby/halo.svg?style=flat-square"/></a>
|
|
|
|
|
<a href="https://hub.docker.com/r/ruibaby/halo/"><img alt="Docker Build Status" src="https://img.shields.io/docker/build/ruibaby/halo.svg?style=flat-square"/></a>
|
|
|
|
|
</p>
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
|
|
|
|
------------------------------
|
2018-12-16 02:44:58 +00:00
|
|
|
|
🇨🇳简体中文 | 🇺🇸[English](./docs/README-en-US.md)
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-09-07 13:21:55 +00:00
|
|
|
|
## 简介
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-05-11 12:47:51 +00:00
|
|
|
|
**Halo** [ˈheɪloʊ],意为光环。当然,你也可以当成拼音读(哈喽)。
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
轻快,简洁,功能强大,使用 Java 开发的博客系统。
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
> QQ 交流群: 162747721 | Telegram 交流群:[https://t.me/HaloBlog](https://t.me/HaloBlog) | [WeHalo 小程序](https://github.com/aquanlerou/WeHalo)。
|
2018-04-30 12:02:17 +00:00
|
|
|
|
|
2018-09-07 13:21:55 +00:00
|
|
|
|
## 快速开始
|
2018-04-14 10:06:03 +00:00
|
|
|
|
|
2018-10-27 15:47:13 +00:00
|
|
|
|
服务器快速部署:
|
2018-09-27 13:55:30 +00:00
|
|
|
|
|
2018-08-01 03:20:18 +00:00
|
|
|
|
```bash
|
2018-12-15 10:53:54 +00:00
|
|
|
|
# 安装 Halo
|
2018-12-08 02:44:29 +00:00
|
|
|
|
yum install -y wget && wget -O halo-cli.sh https://git.io/fxHqp && bash halo-cli.sh -i
|
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
# 更新 Halo
|
2018-10-27 15:47:13 +00:00
|
|
|
|
bash halo-cli.sh -u
|
2018-08-01 03:20:18 +00:00
|
|
|
|
```
|
|
|
|
|
|
2018-10-16 11:24:13 +00:00
|
|
|
|
Docker 部署:
|
|
|
|
|
```bash
|
|
|
|
|
# 拉取镜像
|
|
|
|
|
docker pull ruibaby/halo
|
|
|
|
|
|
|
|
|
|
# 运行
|
|
|
|
|
docker run -d --name halo -p 8090:8090 -v ~/halo:/root/halo ruibaby/halo
|
|
|
|
|
```
|
|
|
|
|
|
2018-12-08 02:44:29 +00:00
|
|
|
|
Docker Compose 部署:
|
|
|
|
|
```bash
|
2018-12-08 07:52:23 +00:00
|
|
|
|
# 下载 Nginx 配置文件模板
|
|
|
|
|
curl https://raw.githubusercontent.com/jwilder/nginx-proxy/master/nginx.tmpl > /etc/nginx/nginx.tmpl
|
|
|
|
|
|
2018-12-08 02:44:29 +00:00
|
|
|
|
# 获取 docker-compose.yaml 文件
|
|
|
|
|
yum install -y wget && wget -O docker-compose.yaml https://git.io/fpS8N
|
|
|
|
|
|
2018-12-25 01:47:46 +00:00
|
|
|
|
# 修改 docker-compose.yaml,修改 VIRTUAL_HOST,LETSENCRYPT_HOST 为自己的域名,修改 LETSENCRYPT_EMAIL 为自己的邮箱。
|
2018-12-08 02:44:29 +00:00
|
|
|
|
|
|
|
|
|
# 运行
|
|
|
|
|
docker-compose up -d
|
|
|
|
|
```
|
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
> 注意:如使用 Idea,Eclipse 等IDE运行的话,需要安装Lombok插件,另外暂不支持JDK10,主题管理和主题上传会有问题。
|
|
|
|
|
> 更多请参考[ Halo 使用文档 ](https://halo-doc.ryanc.cc/installation/)或者[ Wiki](https://github.com/ruibaby/halo/wiki)。
|
2018-05-11 12:47:51 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
## 博客示例
|
2018-03-22 13:55:50 +00:00
|
|
|
|
|
2018-05-02 02:37:22 +00:00
|
|
|
|
[Ryan0up'S Blog](https://ryanc.cc)
|
|
|
|
|
|
|
|
|
|
[SNAIL BLOG](https://slogc.cc)
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-05-04 17:01:34 +00:00
|
|
|
|
[宋浩志博客](http://songhaozhi.com)
|
2018-05-02 14:40:00 +00:00
|
|
|
|
|
2018-09-13 12:18:07 +00:00
|
|
|
|
[KingYiFan'S Blog](https://blog.cnbuilder.cn)
|
|
|
|
|
|
2018-12-09 04:56:00 +00:00
|
|
|
|
[AquanBlog](https://blog.eunji.cn/)
|
|
|
|
|
|
2018-09-07 13:21:55 +00:00
|
|
|
|
## 主题
|
2018-05-11 12:47:51 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
除了内置的 [Anatole](https://github.com/hi-caicai/farbox-theme-Anatole) 和 [Material](https://github.com/viosey/hexo-theme-material) ,还有下列主题没有集成在项目里,如有需要,请自行下载之后通过后台上传上去使用。
|
2018-05-11 12:47:51 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
- [Vno](https://github.com/ruibaby/vno-halo) - 来自Jekyll的一款主题,作者 [Wei Wang](https://onevcat.com/)。
|
|
|
|
|
- [Hux](https://github.com/ruibaby/hux-halo) - 来自Jekyll的一款主题,作者 [Xuan Huang](https://huangxuan.me/)。
|
|
|
|
|
- [Story](https://github.com/ruibaby/story-halo) - 来自Typecho的一款主题,作者 [Trii Hsia](https://yumoe.com/)。
|
|
|
|
|
- [NexT](https://github.com/ruibaby/next-halo) - 来自Hexo的一款主题,作者 [iissnan](https://notes.iissnan.com/)。
|
|
|
|
|
- [Casper](https://github.com/ruibaby/casper-halo) - 来自Ghost的一款主题,作者 [Ghost](https://github.com/TryGhost)。
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-07-20 09:00:27 +00:00
|
|
|
|
> 声明:不接受任何对**移植主题**功能上的意见和建议。
|
|
|
|
|
|
2018-09-07 13:21:55 +00:00
|
|
|
|
## 许可证
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
[![license](https://img.shields.io/github/license/ruibaby/halo.svg?style=flat-square)](https://github.com/ruibaby/halo/blob/master/LICENSE)
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
> Halo 使用 GPL-v3.0 协议开源,请尽量遵守开源协议,即便是在中国。
|
2018-05-02 14:40:00 +00:00
|
|
|
|
|
2018-09-07 13:21:55 +00:00
|
|
|
|
## 感谢
|
2018-03-22 06:32:21 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
Halo 的诞生离不开下面这些项目:
|
2018-03-22 12:01:03 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
- [Spring Boot](https://github.com/spring-projects/spring-boot):Spring 的快速开发框架
|
2018-03-24 12:51:45 +00:00
|
|
|
|
- [Freemarker](https://freemarker.apache.org/):模板引擎,使页面静态化
|
2018-03-22 12:01:03 +00:00
|
|
|
|
- [H2 Database](https://github.com/h2database/h2database):嵌入式数据库,无需安装
|
2018-12-15 10:53:54 +00:00
|
|
|
|
- [Spring-data-jpa](https://github.com/spring-projects/spring-data-jpa.git):不需要写 sql 语句的持久层框架
|
2018-03-24 12:51:45 +00:00
|
|
|
|
- [Ehcache](http://www.ehcache.org/):缓存框架
|
2018-03-22 12:01:03 +00:00
|
|
|
|
- [Lombok](https://www.projectlombok.org/):让代码更简洁
|
2018-12-15 10:53:54 +00:00
|
|
|
|
- [oh-my-email](https://github.com/biezhi/oh-my-email):可能是最小的 Java 邮件发送库了,支持抄送、附件、模板等
|
|
|
|
|
- [Hutool](https://github.com/looly/hutool):一个 Java 基础工具类库
|
2018-07-19 07:26:25 +00:00
|
|
|
|
- [Thumbnailator](https://github.com/coobird/thumbnailator):缩略图生成库
|
2018-12-15 10:53:54 +00:00
|
|
|
|
- [AdminLTE](https://github.com/almasaeed2010/AdminLTE):基于 Bootstrap 的后台模板
|
|
|
|
|
- [Bootstrap](https://github.com/twbs/bootstrap.git):使用最广泛的前端 ui 框架
|
|
|
|
|
- [Animate](https://github.com/daneden/animate.css.git):非常好用的 css 动效库
|
|
|
|
|
- [SimpleMDE - Markdown Editor](https://github.com/sparksuite/simplemde-markdown-editor):简洁,功能够用,且轻量级的 Markdown 编辑器
|
|
|
|
|
- [Bootstrap-FileInput](https://github.com/kartik-v/bootstrap-fileinput.git):基于 Bootstrap 的文件上传组件
|
2018-03-24 12:51:45 +00:00
|
|
|
|
- [Font-awesome](https://github.com/FortAwesome/Font-Awesome.git):使用最广泛的字体图标库
|
2018-12-16 02:44:58 +00:00
|
|
|
|
- [JQuery](https://github.com/jquery/jquery.git):使用最广泛的 JavaScript 框架
|
2018-03-24 12:51:45 +00:00
|
|
|
|
- [Layer](https://github.com/sentsin/layer.git):个人认为最实用最好看的弹出层组件,没有之一
|
2018-12-16 02:44:58 +00:00
|
|
|
|
- [JQuery-Toast](https://github.com/kamranahmedse/jquery-toast-plugin):消息提示组件
|
2018-03-24 12:51:45 +00:00
|
|
|
|
- [Pjax](https://github.com/defunkt/jquery-pjax.git):pushState + ajax = pjax
|
2018-07-19 07:26:25 +00:00
|
|
|
|
- [OwO](https://github.com/DIYgod/OwO):前端表情库
|
2018-05-11 12:47:51 +00:00
|
|
|
|
|
2018-09-07 13:21:55 +00:00
|
|
|
|
## 捐赠
|
2018-06-02 10:02:59 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
> 如果 Halo 对你有帮助,可以请作者喝杯☕️。
|
2018-06-02 10:02:59 +00:00
|
|
|
|
|
2018-12-23 10:56:04 +00:00
|
|
|
|
| 支付宝/微信/QQ |
|
|
|
|
|
| :------------: |
|
|
|
|
|
| <img src="https://i.loli.net/2018/12/23/5c1f68ce9b884.png" width="200"/> |
|
2018-09-16 08:48:38 +00:00
|
|
|
|
|
2018-12-15 10:53:54 +00:00
|
|
|
|
## 界面展示
|
|
|
|
|
|
2018-12-16 02:44:58 +00:00
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6edb9a49.png)
|
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6ee08333.png)
|
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6ec853af.png)
|
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6ec50238.png)
|
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6ed4057a.png)
|
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6eb01f2d.png)
|
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6eb98898.png)
|
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6eb3b506.png)
|
|
|
|
|
![](https://i.loli.net/2018/12/16/5c15b6ebf29fd.png)
|