blog 搭建
所需工具
工具安装
hexo 安装
创建站点
修改npm源
npm config set registry “https://registry.npm.taobao.org“
初始化站点
进入要创建的文件夹,如 D:\proj
1 2 3
| hexo init myblog cd myblog npm install
|
本地运行
如果只是想看在本地运行,可直接
1 2
| hexo generate hexo server (或 hexo server -p 9090)
|
Github Pages 运行
创建新 rep
修改 _config.yml
1 2 3 4
| deploy: type: git repository: https://github.com/xxj123go/xxj123go.github.io.git branch: master
|
安装插件
1
| npm install hexo-deployer-git --save
|
托管
hexo generate 可缩写为 hexo g , hexo deploy 可缩写为 hexo d
前往
访问: https://xxj123go.github.io/
主题
1 2
| git clone https://github.com/theme-next/hexo-theme-next theme/next
|