一个人的闲言碎语

dr0v

blog.drov.com.cn
一个人碎碎念。
About Me
A lazy security employee.

2020年4月16日星期四

主要还是看 hexo 的 next 主题挺不错的,所以选择了用 hexo 搭建 github 的 blog。
使用 hexo 搭建 blog 的前置条件还是很多的:
1. brew install npm
2. npm install -g hexo-cli
3. npm install -g hexo
如上,即已安装前置的 node.js 和 hexo。
之后需要创建一个新文件夹(文件夹必须为空,否则无法 init hexo),目录下执行
1. hexo init
2. npm install
3. hexo g
4. hexo s
即启动本地 blog 服务,输入 http://localhost:4000/ 即刻本地查看。
此时需要同步到 github,在 github 进行部署。
这里需要编辑 _config.yml 以通过 hexo d 进行发布(单纯同步工程至 github 不可行)。
deploy:
  type: git
  repo: git@github.com:username/username.github.io.git
  branch: master
这时一般是没有 git 命令的(执行 hexo d 会报错),需要安装 hexo-deployer-git
npm install hexo-deployer-git
此时,通过如下命令可进行发布
1. hexo clean
2. hexo g
3. hexo d


访问 username.github.io 即可访问自己的 blog。
Categories: , , ,

0 评论:

发表评论