美文网首页
Hexo折腾记-1

Hexo折腾记-1

作者: winyiwin | 来源:发表于2017-10-15 17:09 被阅读0次

    闲来无事,就想着折腾一下🔥了很久的静态博客,一来体验,二来作为自己记录工作,日常生活杂事的一个空间。Let's beginning!☺

    1. 用到了啥
    1. 博客的初始构建
    • Node和Git的安装这里不作赘述。
    • Hexo的安装参见Hexo官方文档。
    npm install hexo-cli -g
    # yourblog.github.io 是下步GitHub仓库名称,
    # yourbolg保持和你的GitHub用户名保持一致,参见[https://pages.github.com/]
    hexo init yourblog.github.io
    cd blog
    npm install
    hexo server
    
    • GitHub仓库的初始化
      参见GitHub Pages
      创建仓库.jpg
    • 设置及部署
      • GitHub 仓库设置
        找到仓库Settings --> GitHub Pages ,选择master,Save.

        屏幕快照 2017-10-15 16.55.00.png

    此时,便完成了GitHub Pages的基本设置,会看到
    Your site is published at xxx.github.io的提示。此时你打开这个网址如果你有写index.html 或者README.md的话,会展示出来。

    • Hexo 发布设置
      找到项目路径下_config.yml文件,编辑deploy节点,注意属性节点: 后要有一个空格
    # Deployment
    ## Docs: https://hexo.io/docs/deployment.html
    deploy:
      type: git
      repo: git@github.com:winyiwin/winyiwin.github.io.git
      branch: master
    

    最后执行 hexo deploy 部署,就完成了简单的一个基本静态blog。

    相关文章

      网友评论

          本文标题:Hexo折腾记-1

          本文链接:https://www.haomeiwen.com/subject/xcjcuxtx.html