目录
一、前言
- 安装 Git
- 安装 Node.js
二、Hexo安装、新建、启动
# 安装 hexo $ npm install -g hexo-cli # 新建博客项目:mindblog $ npx hexo init mindblog # 进入mindblog文件夹 $ cd mindblog # 安装依赖 $ npm install # 本地启动 $ npx hexo server
如果出现以下则执行:
$ npm install -g npm
执行完毕!
三、架构说明
配置文件说明:配置 | Hexo
四、写博客
# 采用默认模板
$ npx hexo new "my finrt blog"
# 指定模板page
$ npx hexo new page "my finrt blog"
启动服务访问
五、打包
# 清理缓存
$ npx hexo clean
# 打包
$ npx hexo deploy
六、发布到GitHub
1.新建仓库
2.安装插件
$ npm install --save hexo-deployer-git
3.修改配置文件:_config.yml
deploy:
type: git
# 仓库地址
repo: https://github.com/<username>/<project>
# 仓库分支
branch: gh-pages
4.部署github
# 清理缓存
$ npx hexo clean
# 打包
$ npx hexo deploy
中间会跳出弹窗:登录GitBub(使用账号密码或者token)
5.查看仓库
https://github.com/yangyanzhao/yangyanzhao.github.io
发现已经自动上传打包文件
6.访问网站
https://yangyanzhao.github.io/