githubpage 打造个人简历的一次尝试 --hexo
作者:互联网
最终搞定之后发现并不是自己想要的效果,决定用vue开发,如下是hexo 搭建的一个流程
Install hexo
npm install hexo-cli -g // 安装hexo-cli
Create site
hexo init <folder>
cd <folder>
npm install
Config _config.yml
title: ***
........
New post
hexo new [layout] <title> // hexo new "About Me"
Generate
hexo g // hexo generate
Publish
hexo publish // hexo publish
Run server
hexo server
Deploy
- 安装
hexo -deployer-git
npm install hexo-deployer-git --save
- 首先必须修改
_config.yml
文件
deploy:
type: git
repo: *********
- deploy
hexo clean && hexo deploy
参考:官网
标签:npm,git,hexo,个人简历,deploy,install,githubpage,cli 来源: https://www.cnblogs.com/rosendolu/p/10889953.html