start a new blog

  1. generate ssh-keygen For more information, please refer to this.

        λ ssh-keygen -t rsa -b 4096 -C "thanks_music163@163.com"
    
  2. Add public key to github

  3. Add ssh configuration

    Host github-thanks_music
         HostName github.com
         User git
         IdentityFile ~/.ssh/id_rsa_thanks_music
    
  4. install Emacs package ox-hugo

    M-x list-packages
    

    or use-package:

    (use-package ox-hugo
      :ensure t
      :after ox)
    

    Refer to document ox-hugo.

  5. install hugo on macOS:

    brew update; and brew install hugo
    

    Read the document about Hugo. Learn some basic terms and knowledge about Hugo. Refer to this.

  6. read others’ configuration

    read ox-hugo official document.

    also refer to hugo-dusk configuration.

  7. setup Discus and Google Analytics

  8. deploy to github

    refer to this.

  9. initialize on another computer or system Clone blog source repository and init submodules:

    git submodule update --init --recursive
    

    On submodules, refer to this.

Happy Blogging. :P

comments powered by Disqus