搭建成功,总结的步骤
安装brew包管理器,Mac自带ruby命令
1
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装Nodejs
1
brew install node
安装hexo
1
2npm config set registry="http://registry.cnpmjs.org"
sudo npm install -g hexo初始化hexo
1
2
3hexo init <folder> #执行init命令初始化hexo到你指定的目录
例如:hexo init hexo,则会在当前目录下生成hexo目录
以下命令在hexo目录下执行。安装依赖包
1
npm install
生成静态网页
1
2hexo generate #自动根据当前目录下文件,生成静态网页
或者hexo g运行本地服务
1
2hexo server
或者hexo s此时在浏览器中输入:
localhost:4000
,可查看静态的网页添加博文
1
2hexo new "postName" #新建博文,其中postName是博文题目
例如:hexo n "青云"刷新上述静态网页,可看到新添加的一篇博文。
PS:博文会自动生成在博客目录下source/_posts/postName.md
部署到github
- 打开github.com,注册github账户,如名字username,创建仓库仓库username.github.io
配置ssh-key
1
2
3
4
5git config --global user.email "你的邮箱"
git config --global user.name "你的用户名"
ssh-keygen -t rsa -C "你的邮箱"
回车三次,在~/.ssh/下会生成id_rsa和id_rsa.pub两个文件
复制id_rsa.pub文件内容到github账户下的ssh keys的新建key里面,ADD。修改hexo目录下_config.yml,在最后添加以下内容
1
2
3
4deploy:
type: git
repository: git@github.com:username/username.github.io.git
branch: master执行
npm install hexo-deployer-git --save
- 执行
hexo g
和hexo d
完成部署
- 打开浏览器并输入username.github.io来查看你的博客