基于github的Hexo多客户端博文管理
1. 文件环境准备
准备github建立好的hexo分支,并在合适的文件夹pull下hexo分支的文件
2. 配置当前客户端开发环境
1. 安装Node.js环境
2. 安装Git工具环境
3. 配置当前客户端Hexo环境
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| npm install hexo-cli -g npm install hexo-deployer-git --save
mkdir hexo cd hexo
hexo init
npm i -S hexo-generator-search hexo-generator-json-content
npm install hexo-renderer-less --save
npm install hexo-renderer-stylus --save
npm i --save hexo-wordcount npm i -S hexo-helper-qrcode npm i -S hexo-related-popular-posts npm install -g cnpm --registry=https://registry.npm.taobao.org npm install hexo-asset-image --save npm i -S leancloud-storage
hexo generate hexo server
hexo g -d
|