太久没写博客了,最近要看一下InnoDB的东西,内容有点多,需要写一点内容,然而家里没有写博客的环境,故写下该指南,留备以后使用
环境准备
node.js
- 下载node.js
- 一路Next安装
- win10设置里搜索powershell,打开非签名脚本的运行
Hexo
- 找到hexo主页
- 安装
hexo-deployer-git
1
| npm install hexo-deployer-git --save
|
PicGo
- 下载并安装PicGO,下载速度是真滴慢,佛了
- 配置阿里云OSS
条目 |
内容 |
KeyID |
保密 |
KeySecret |
保密 |
存储空间名 |
githubphoto |
存储区域 |
oss-cn-beijing |
存储路径 |
img/ |
下载源项目
1
| git clone git@github.com:richsoap/RichSoapBlog
|
编写内容
内容在source/_posts下,markdown格式
测试
1
| hexo server //可以动态调试欸,神奇
|
发布
设定发布路径
_config.yml文件的末尾改为(应该已经改好了
1 2 3 4
| deploy: type: git repository: git@github.com:richsoap/richsoap.GitHub.io.git branch: master
|
命令
1 2
| hexo generate hexo deploy
|