How to use Hexo and deploy to GitHub Pages
How to use Hexo and deploy to GitHub Pages
1. Install Hexo
1 | $ sudo npm install -g hexo-cli |
2. Create a project for your GitHub Pages
1 | $ hexo init LeionTong.github.io |
3. Run a test server locally
1 | $ hexo server |
4. Set information for your new blog
https://hexo.io/docs/configuration.html
1 | $ vi _config.yml |
5. Set information to use Git
https://hexo.io/docs/one-command-deployment
Install hexo-deployer-git.
1 | $ npm install hexo-deployer-git --save |
Edit _config.yml (with example values shown below as comments):
1 | $ vi _config.yml |
6. Set “watch” before starting your work
“watch” command can monitor your files.
https://hexo.io/docs/generating.html
1 | $ hexo generate --watch |
7. Create a new post file
1 | $ hexo new first-post |
8. Edit the above file with Markdown or Hexo’s Helper
Hexo’s Helper
https://hexo.io/docs/helpers.html
I use Atom with “shift + control + m” when I use Markdown :-)
https://atom.io/
9. Delete “source/_posts/hello-world.md”
It’s not necessary to deploy.
10. Deploy your new blog!!
https://hexo.io/docs/deployment.html
1 | $ hexo clean && hexo deploy |
After writting the above command, you can see your new blog on GitHub Pages.
http://******.github.io/
11. Change your blog theme
https://github.com/hexojs/hexo/wiki/Themes
For instance, How to use the following theme.
https://hexo.io/hexo-theme-light/ or maybe https://github.com/theme-next/hexo-theme-next ?
1 | ## If you're using Hexo 5.0 or later, the simplest way to install is through npm: |
12. Create a new page file
https://hexo.io/docs/writing.html
1 | $ hexo new page aboutme |
Q&A
Q:运行 hexo 提示 “/usr/bin/env: node: 没有那个文件或目录”
A:由于 Ubuntu 下已经有一个名叫 node 的库,因此 Node.js 在 ubuntu 下默认叫 nodejs ,创建软链接:
1 | sudo ln -s`which nodejs` /usr/bin/node |
Q: 如果要将源码上传至Github,或者GitLab等云平台,.gitignore怎么写?
A: .gitignore代码:
1 | # .DS_Store |
Q:Github Pages要想自定义域名怎么办?
在 source 目录下新建 CNAME 文本文件,写入购买的域名,然后在域名供应商管理后台配置好域名解析记录。
Q:怎么创建软链接?
使用 WSL,MobaXterm,GitforWindows 等 terminal 工具。
1 | ln -sv "/mnt/c/Users/leion/OneDrive/Obsidian Vault/H.exo/source" "/mnt/c/Users/leion/Documents/Tong-Workspaces/Git/Hexo-Blog/source" |
Q:WSL-Ubuntu安装 npm 和 hexo 后启动 hexo s
报错:vbnetTypeError: Object.fromEntries is not a function
`
https://hexo.io/zh-cn/docs/#Node-js-版本限制
https://blog.csdn.net/LizequaNNN/article/details/122369122
nodejs版本太低。升级node:
1 | leion@DELL-XPS-WIN:/drives/c/Users/leion/Downloads/he$ node --version |