You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
912 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 快速开始
本指南将帮助你快速上手使用这个文档站点。
## 前提条件
- 安装Node.js推荐版本12.x及以上
- 安装npm或yarn
## 安装依赖
```bash
npm install
```
## 启动服务器
```bash
npm run start
```
然后打开浏览器访问 http://localhost:3000 即可查看文档站点。
## 项目结构
```
├── _404.md # 404页面
├── css/ # 样式文件目录
├── doc/ # 文档文件目录
│ ├── _sidebar.md # 侧边栏配置
│ ├── home.md # 首页
│ ├── introduction.md # 介绍页面
│ └── quickstart.md # 快速开始页面
├── js/ # JavaScript文件目录
├── index.html # 主页面
└── package.json # 项目配置文件
```
## 编辑文档
直接编辑`doc`目录下的Markdown文件即可更新文档内容。

Powered by TurnKey Linux.