github hexo 博客搭建

环境准备:

安装node.js
npm 加载 hexo 

hexo

hexo init blog
hexo s 启动服务, 浏览器访问 http://localhost:4000 就可以查看到结果了。

next 主题:
https://theme-next.iissnan.com/getting-started.html

github 配置ssh key
npm安装插件 hexo-deployer-git

npm install hexo-deployer-git --save

_config.yml 配置修改

deploy:
  type: git
  repository: git地址
  branch: master

你可能感兴趣的:(github hexo 博客搭建)