hexo搭建github个人博客

需求

搭建github个人博客

环境

安装node环境

参考版本

环境 版本
node v10.15.1
npm 6.9.0

移步官方详细说明:hexo官网

步骤

全局安装hexo

$ npm install -g hexo-cli

建站

# hexo-test为文件夹名
$ hexo init hexo-test
$ cd hexo-test
# 安装依赖
$ npm install
# 启动本地服务
$ hexo server

更换主题

挑选主题
这里选择主题'autumn'

# 下载主题资源到 themes 文件夹下
$ git clone https://github.com/FrontendSophie/hexo-theme-autumn.git

主题资源放入themes文件夹:

修改 _config.yml 配置:

theme: hexo-theme-autumn

启动本地服务

$ hexo server

主题替换成功:

修改其他配置

参见配置 | Hexo

部署到github

首先,在github新建一个名为.github.io的仓库

然后,安装hexo-deployer-git

$ npm install hexo-deployer-git --save

在 _congif.yml 中配置 deploy 字段

deploy:
  type: git
  repo: <你的仓库地址> # https://github.com/zimuZhao/zimuZhao.github.io
  branch: master

执行自动部署命令

$ hexo clean
$ hexo deploy

Deploy成功后访问:https://zimuzhao.github.io/

文章撰写示例

在目录source->_posts下新建md文档

文档部分示例(添加标题、作者、tag等)

---
title: hexo搭建github个人博客
author: ZIMU
tags:
  - hexo
categories:
  - demo
---

# 需求
搭建github个人博客

# 环境
安装[node环境][1]

...

你可能感兴趣的:(hexo)