demo
hexo搭建github个人博客
- 2019-09-17
- ZIMU
需求
搭建github个人博客
环境
安装node环境
参考版本
|环境|版本|
|-|-|
|node|v10.15.1|
|npm|6.9.0|
移步官方详细说明:hexo官网
步骤
全局安装hexo
1 | $ npm install -g hexo-cli |
建站
1 | # hexo-test为文件夹名 |
更换主题
挑选主题
这里选择主题’autumn’
1 | # 下载主题资源到 themes 文件夹下 |
主题资源放入themes文件夹:
修改 _config.yml 配置:
1 | theme: hexo-theme-autumn |
启动本地服务
1 | $ hexo server |
主题替换成功:
修改其他配置
部署到github
首先,在github新建一个名为<github用户名>.github.io
的仓库
然后,安装hexo-deployer-git
1 | $ npm install hexo-deployer-git --save |
在 _congif.yml 中配置 deploy 字段
1 | deploy: |
执行自动部署命令
1 | $ hexo clean |
Deploy成功后访问:https://zimuzhao.github.io/
文章撰写示例
在目录source->_posts
下新建md文档
文档部分示例
1 | --- |