搭建博客

2017-08-10  本文已影响0人  shallwego_

【详细】 →→→ →→→5分钟 搭建免费个人博客

一、安装

1.Git
2.Nodejs
3.使用npm安装Hexo
npm install hexo -g6

二、编写博客

1.本地创建博客文件夹
hexo init username.github.io

创建出一个名为“username.github.io”的文件夹。

2.更改配置
$ cd username.github.io
$ git clone https://github.com/iissnan/hexo-theme-next themes/next
 title: title    //你博客的名字
 author: name  //你的名字
 language: zh-Hans    //语言 中文
 theme: next   //刚刚安装的主题名称
 deploy:
    type: git    //使用Git 发布
    repo: https://github.com/username/username.github.io.git    // 刚创建的Github仓库
3.写文章

在username.github.io/source/_posts下创建后缀为.md文件,用Markdown语法编写。

4.测试
hexo s

启动测试服务器,在浏览器中输入https://localhost:4000可访问本地博客
→→→ →→→ 端口冲突解决

三、发布

1.安装hexo-deployer-git自动部署发布工具【远程博客】
 npm install hexo-deployer-git -save

→→→ →→→ 使用Hexo搭建博客
否则下一步使用hexo d 命令时会出现以下错误:

2.发布

测试没问题就生成静态网页文件发布至Github pages 中。

hexo clean 
hexo g 
hexo d
3.访问

在浏览器中输入 http://username.github.io就能够访问了。

上一篇下一篇

猜你喜欢

热点阅读