Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 829 Bytes

README.md

File metadata and controls

50 lines (32 loc) · 829 Bytes

建站

使用 hexo,快速开始如下:

$ npm install hexo-cli -g
$ hexo init blog
$ cd blog
$ npm install
$ hexo server

主题

使用了 NexT,快速开始如下:

$ cd your-hexo-site
$ git clone https://github.com/iissnan/hexo-theme-next themes/next

由于墙的存在,建议直接到项目的 github 主页 直接下载 zip 包。

部署到 github pages

安装 git 部署插件即可,参考: 部署

  • 安装插件
$ npm install hexo-deployer-git --save
  • _config.yml 中修改 deploy 内容
deploy:
  type: git
  repo: https://github.com/hongweiyi/hongweiyi.github.io.git
  • 部署
$ hexo deploy