安装hexo
npm install -g hexo-cli
找个空目录,初始化hexo
hexo init 目录名
进入目录,依次执行
# 生成静态文件
hexo g
# 本地预览
hexo s
显示有以下信息后即可访问localhost:4000
INFO Hexo is running at http://localhost:4000 . Press Ctrl+C to stop.
常用命令
官方文档:https://hexo.io/zh-cn/docs/commands
# 新建文章
hexo n "文章名" 或 hexo new post "文章名"
# 生成静态文件
hexo g 或 hexo generate
# 部署
hexo d 或 hexo deploy
# 启动
hexo s 或 hexo server
)
)
deploy:
type: 'git'
repo:
github: 仓库链接
branch: main
hexo clean
hexo g
hexo d
再去仓库会发现静态文件都已经被推送到仓库里
gitee相比github访问速度更快,但是Gitee Pages服务需要实名制认证。
创建仓库步骤基本一致,不过仓库名需要是用户名
修改_config.yml文件
deploy:
type: 'git'
repo:
# 可同时配置多个
github: github仓库链接
gitee: gitee仓库链接
branch: main
执行以下命令
hexo clean
hexo g
hexo d
开启Gitee Pages服务
实名认证通过后会展示如下,选择对应分支部署后会展示链接