0%

这篇博客是怎么来的

  欢迎来到我的博客,17年的时候开始搭建了第一个自己的独立博客,后来换电脑忘记备份,现在重新来一次,现在会记录开发智能家庭系统的经过。很多小伙伴应该也想过搭建一个自己的博客,网上也有一堆详细教程。我在此稍稍总结一下具体的搭建步骤,另外网上很少有修改博客源码的个性化教程,我就稍稍分享一下我的一些修改经验,更多的个性化操作需要你自己以后去摸索。本篇博客会详细讲一下,如何搭建一个属于自己的博客网站(奶妈级,保姆级)

  Welcome to my blog. I started to build my first independent blog in 17 years. Later, I changed my computer and forgot to back it up. Now I’ll do it again. Now I will record the process of developing smart home system. Many small partners should also want to build their own blog, and there are a lot of detailed tutorials on the Internet. I’d like to summarize the specific building steps here. In addition, there are few personalized tutorials to modify blog source code on the Internet. I’d like to share some of my modification experience. More personalized operations need to be explored by you in the future. This blog will explain in detail how to build a blog website of your own (nanny level, nanny level)

Quick Start

本次用的程序是 hexo

官网 Hexo 官网有安装说明,不过是上古时期的,现在跟着官网安装会有些问题出现,不建议。如果你想顺利的安装,请继续往下看。

首先安装Node.js

打开Node.js官网Node.js: Server下载并安装

再安装Git

打开Git官网: Git下载并安装
没有什么重点知识,看图跟着做就好。

以上完成电脑需要的组件安装,现在开始来安装hexo

找一个你喜欢的地方新建一个文件夹,这个文件夹就是你博客的所有文件存放的地方,我这里在D盘新建了一个名字为blog的文件夹。然后打开这个文件夹,右键选择 Git Bash Here

输入

1
$ hexo init

初始化文件夹

接着输入

1
$ npm install

来安装必备的组件

输入

1
$ hexo g

生成静态网页

输入

1
$ hexo server

打开本地服务器(可以简写成hexo s)

根据提示打开浏览器 输入

1
127.0.0.1:4000

回车查看效果

以上完成hexo的本地搭建,可以正常在本地访问,如果你想部署到云端,让其他的人也可以看到请继续往下看。

准备注册一个Github账号

按照格式对照着填写,yourname.github.io yourname替换成你自己喜欢的 记住就行

打开你刚刚设置的 yourname.github.io 查看一下效果

以上完成Github的注册和新建仓库,下面介绍如何把本地代码部署到仓库

在配置文件夹目录右键Git Bash Here
分别输入

1
2
git config --global user.name "achen"
git config --global user.email "6666@qq.com"

用户名和邮箱根据你注册github的信息自行修改。
出现下面的界面一直回车

接着输入

1
ssh -T git@github.com

输入 yes

打开博客根目录下的_config.yml文件,这是博客的配置文件,在这里你可以修改与博客相关的各种信息。

修改最后一行的配置:

1
2
3
4
deploy:
type: git
repository: https://github.com/godweiyang/godweiyang.github.io
branch: master

repository修改为你自己的github项目地址。

本地推送云端

首先在博客根目录下右键打开git bash,安装一个扩展

1
npm i hexo-deployer-git

现在把现有的内容推到Github上试试
输入

1
hexo d

提示让登陆Github账户,点击红框内的浏览器登陆 按照下图步骤登陆即可。

登陆之后正常推送成功,打开Github仓库setings往下拉找到这一行,改成master 点save

打开

1
yourname.github.io 

查看效果,发现已经把本地的内容推送到云端查看。

以上就是本篇日志全部内容,喜欢的小伙伴记得关注。