windows部署hexo
Tanwan

前提

安装 Hexo 相当简单。然而在安装前,您必须检查电脑中是否已安装下列应用程序:

如果您的电脑中已经安装上述必备程序,那么恭喜您!接下来只需要使用 npm 即可完成 Hexo 的安装。

主程序安装

1
cd D:/Hexo

cd到你需要安装hexo的目录下,这里是示范安装到本地D盘的Hexo目录下

1
2
3
4
5
6
7
8
9
10
11
npm install -g hexo-cli
hexo init
npm i hexo@4.2.1
npm install
npm uninstall hexo-renderer-marked --save
npm install hexo-renderer-kramed --save
npm install hexo-deployer-git --save
npm install hexo-generator-feed --save
npm install hexo-generator-json-content --save
npm install hexo-renderer-less --save
npm install hexo-admin --save

测试:

1
hexo clean && hexo g && hexo s

浏览器打开http://localhost:4000 页面出现内容Hello world即完成安装。

hexo常用指令

hexo new title -创建一个新文章

hexo g -部署网站

hexo s -启动本地服务器

hexo clean -清除缓存文件

hexo d -提交到服务器(需要后续绑定)

主题安装

hexo-theme-Indigo

本项目参照

yscoder/hexo-theme-indigo: 一个Material Design风格的Hexo主题 (github.com)

abelsu7/hexo-theme-indigo-plus: 💾hexo-theme-indigo 主题优化版 (github.com)

1
git clone https://github.com/tanwanme/indigo.git themes/indigo

修改 Hexo 配置文件

此时应该在 Hexo 的根目录(d/Hexo/). 编辑 _config.yml 这个文档. 此文档包含网站诸如 站名, 站长名, 邮箱, 简介等等各种配置.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
title: 皓月当空云归隐
subtitle: 我站在阳台抽烟,我抽一半,风抽一半。
description: '记录我自己折腾过程.'
keywords: hexo,indigo
author: Tanwan
language: zh_CN
timezone: 'Asia/Shanghai'

url: https://kzdd.us.kg

theme: indigo

jsonContent:
meta: false
pages: false

posts:
title: true
date: true
path: true
text: true
raw: false
content: false
slug: false
updated: false
comments: false
link: false
permalink: false
excerpt: false
categories: false
tags: true

feed:
type: atom
path: atom.xml
limit: 0

构建新网站内容

1
hexo clean && hexo g && hexo s

浏览器打开http://localhost:4000查看是否更新成功。

Markdown文本编辑器

推荐一个小清新编辑器

Typora.开心版1.9.4