0%

Hexo+github+next搭建的blog


  1. 搭建环境:Windows 10
  2. 软件工具:git、node.js、hexo、Markdownpad2

一、环境搭建

  • 安装git

git官网(http://git-scm.com)

  • 安装Node.js

node.js官网(https://nodejs.org/en/)

二、安装和配置Hexo

  • 执行cmd命令

    npm install -g hexo-cli

  • 本地创建Hexo文件夹,本目录下执行cmd命令

    hexo init

    npm install

  • 启动Hexo

    hexo server

  • 更改hexo主题,在Hexo目录下载next主题

    git clone https://github.com/iissnan/hexo-theme-next themes/next

  • 修改Hexo配置文件_config.yml

    theme: next

  • 重启Hexo,基本更改过来了,其他修改具体查看GITBUB

  • 创建文章,执行cmd命令

hexo new 文章主题

  • 执行命令后,在文件下的source_posts,自动生成以后缀为md的文件,修改md内容

  • 生成html文件,执行cmd命令

hexo d -g

  • 自动会生存静态文件在public文件夹下,把里面的文件全部上传至自己的github下即可