在Coding上搭建Hexo博客

title: 在Coding上搭建Hexo博客

tags: hexo

参考文章

使用hexo搭建博客
Pacman主题介绍

为什么是Hexo?

编译快 -- Octopress
安装方便 -- Jekyll
markdown管理方便 -- Ghost

在 Coding 上搭建 Hexo 博客

  • 安装Node.js
  • 安装Hexo
...
cd blog
hexo init 
npm install  
...
  • Coding 的部署

新建Staticfile文件

root: public\

coding 需要这个文件来标识是纯静态HTML网站.

修改.gitignore

.DS_Store
Thumbs.db
db.json
debug.log
node_modules/
public/ 
.deploy/

push 之后就可以在演示中开始部署了~

-- End --

你可能感兴趣的:(在Coding上搭建Hexo博客)