个人博客搭建
一、下载安装 git ,Node.js
Node.js下载地址:https://nodejs.org/en/
Git:https://git-scm.com/
二、安装,配置 Hexo
安装:
1 | 1 、 npm install -g hexo-cli |
初始化项目:
1 | hexo init |
配置: (1)新建存放博客文件夹 (2)进入文件夹,并且打开Git Bash (3)运行$hexo init$ npm install
_config.yml 可以修改我们的博客标题,作者,邮箱,网址 … ..
三、本地启动Hexo
$hexo g # 生成
$hexo s #启动本地服务器,这一步之后就可以通过http://localhost:4000 查看
浏览器输入:http://localhost:4000/
四、将Hexo部署到GitHub上
1.注册GitHub账户(默认大家都有了) (无法访问就在微软自带的浏览器安装 Hoxx Vpn 插件)
2.新建仓库
3.使用Hexo deploy 部署到GitHub
3.1 编辑根目录下_config.yml文件
Deployment
Docs: https://hexo.io/docs/deployment.html
deploy:
type: git
repo: #仓库地址
branch: main
3.2 安装扩展
npm install hexo-deployer-git –save
3.3 设置用户信息
$ git config –global user.name “注册时候的用户名” #自己的用户名 username
$ git config –global user.email “邮件地址@youremail.com” #填写Git的邮箱 email
3.4 添加SSh Key到GitHub上
ssh-keygen -t rsa -C “邮件地址@youremail.com” # 生成Key email
在 C:/User/username/.ssh/文件里面
ssh -T git@github.com # 测试我们的Key是否添加成功
3.5 部署到Github 上 $hexo d