Learner0x5a's Studio.

hexo-github 搭建网站

Word count: 171Reading time: 1 min
2020/12/14 Share

预备

安装git和nodejs

1
sudo apt install git nodejs npm

新建网站目录,例如test,安装hexo

1
2
mkdir test  
sudo npm install -g hexo-cli

搭建网站

初始化

1
2
3
4
hexo init test  
cd test
npm install
# test文件夹下_config.yml为网站配置文件

配置github

1
2
3
4
5
6
7
8
# 新建一个名为 username.github.io的repo,username为github账户的用户名  
# 将这个repo的ssh链接填到_config.yml中,即修改deploy字段:
# deploy:
# type: git
# repository: git@github.com:username/username.github.io.git
# branch: master
# 然后
npm install hexo-deployer-git --save

发布/更新网站

1
hexo clean && hexo generate && hexo deploy  

配置主题

我用了Archer主题

插入图片

在source/下新建images目录,在md中用Markdown语法引用,例如

1
![鄂A0260W](/images/red_cross.jpg)  
CATALOG
  1. 1. 预备
    1. 1.1. 安装git和nodejs
    2. 1.2. 新建网站目录,例如test,安装hexo
  2. 2. 搭建网站
    1. 2.1. 初始化
    2. 2.2. 配置github
  3. 3. 发布/更新网站
  4. 4. 配置主题
  5. 5. 插入图片