个人博客搭建

本文主要介绍基于Hexo+NexT的个人博客搭建。
客户端(Windows)
安装Hexo+NexT
(1) 安装Node.js、Git
1 | # 安装步骤忽略 |
(2) 安装Hexo
1 | npm install -g hexo-cli |
(3) 建站
1 | hexo init Hexo |
(4) 安装NexT
1 | # 安装后,将_config.yml中theme的属性值修改为next |
(5) 启动服务
1 | # 启动后,访问http://localhost:4000/ |
服务端(Linux)
待完善