https://github.com/kscript/hexo-server
https://github.com/kscript/hexo-server
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kscript/hexo-server
- Owner: kscript
- License: mit
- Created: 2019-12-12T10:18:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-04T03:02:56.000Z (over 2 years ago)
- Last Synced: 2025-03-04T15:47:58.134Z (11 months ago)
- Language: JavaScript
- Homepage: https://kscript.gitee.io/hexo
- Size: 5.63 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hexo
### 介绍
一个生成 hexo 博客的脚手架. 不包含主题, 需自行下载
### 使用
1. 全局安装hexo-cli
``` cmd
npm i -g hexo-cli
```
2. 安装项目依赖
``` cmd
npm i
```
3. 添加主题
新建themes文件夹, 在 [hexo主题](https://hexo.io/themes/) 挑选一个自己喜欢的主题, 将其clone到themes文件夹
```
// 将示例主题clone到themes文件夹下
git clone https://github.com/kscript/even.git themes/even
```
4. 生成
```
hexo g
```
5. 运行服务
```
hexo s
```