Notes for my deployment of Hexo
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
My Hexo Deployment Journey
- Environment Setup
Installed Node.js v16.x and Git on Windows 11. Verified installation with:1
2node --version
git --version - Hexo Initialization
Created project folder and installed hexo-cli:1
2
3
4npm install -g hexo-cli
hexo init blog
cd blog
npm install - Theme Configuration
Chose butterfly theme with enhanced features:Configured1
npm install hexo-theme-butterfly --save
_config.yml
for GitHub Pages deployment. - Deployment
Deployed to GitHub Pages:1
2
3hexo clean
hexo g
hexo d - Domain Configuration
Configured domain name with GitHub Pages settings.
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.