Hexo+NexT搭建个人博客

安装Hexo

前提是必须先安装好 Node.js(这里就不作介绍了)

1
npm install hexo -g

初始化

如果指定,便会在这个目录下新建一个名为的文件夹;否则将在当前目录下初始化

1
hexo init <folder>

新建文章

1
hexo new "FirstArticle"

生成静态页面指public目录

1
hexo generate (或简写为hexo g)

本地启动服务器

服务器会跑在http://localhost:port (port 预设为 4000,可在 _config.yml 设定)

1
hexo server (或简写为hexo s)

关联Github

我们需要修改站点配置文件_config.yml,如下格式:

1
2
3
4
deploy:
type: git
repository: https://github.com/chengquan223/chengquan223.github.io
branch: master

安装插件hexo-deployer-git,将网站部署到Github

1
npm install hexo-deployer-git --save

执行命令进行部署,浏览器中输入http://chengquan223.github.io 即可,(github账户名称修改为你的)

1
hexo deploy

每次部署的步骤。可按照以下三步来进行

1
2
3
hexo clean
hexo generate
hexo deploy

简写成

1
2
hexo clean
hexo g -d

博客主题

主题列表
NexT主题使用文档

坚持原创技术分享,您的支持将鼓励我继续创作!
Fork me on GitHub