Hexo 4 Hexo部署发布(本地)

部署发布

  1. 将本地博客中编写的博客发布到云服务器中。
  2. 在本地博客目录,安装hexi-deployer-git插件
    npm install hexo-deployer-git --save
  3. 编辑_config.yml文件,配置deploy属性。
         deploy:
           type: git
           repo: git@39.98.255.120:/home/git/repos/hexo.git
           branch: master
  4. 执行如下指令,将生成html文件,并发布到云服务器。
         hexo clean 
         hexo generate 
         hexo deploy
  5. 浏览器直接输入云服务器地址访问即可。
  6. 注意:config.yml文件中deploy属性的repo可以存在多个,也就是说可以同时发布到多个服务器:
         deploy:
           type: git
           repository:
               github: git@github.com:xxx/yyy.git
               myserver: git@xxx:yyy.git
           branch: master

主题配置

  1. 几个不错的主题
  2. 导入主题指令
  3. 编辑_config.yml文件,配置主题
    • a. theme: next
欣赏此文?求鼓励,求支持!您的支持就是支持我更新的最大动力!