diff --git a/docs/1.introduction/1.what-is-nebula-graph.md b/docs-2.0/1.introduction/1.what-is-nebula-graph.md similarity index 98% rename from docs/1.introduction/1.what-is-nebula-graph.md rename to docs-2.0/1.introduction/1.what-is-nebula-graph.md index 76876206948..e9fd4024f94 100644 --- a/docs/1.introduction/1.what-is-nebula-graph.md +++ b/docs-2.0/1.introduction/1.what-is-nebula-graph.md @@ -8,7 +8,7 @@ Nebula Graph 是一款开源的、分布式的、易扩展的原生图数据库 图数据库是专门存储庞大的图形网络并从中检索信息的数据库。它可以将图中的数据高效存储为点(Vertex)和边(Edge),还可以将属性(Property)附加到点和边上。 -![What is a graph database](https://docs-cdn.nebula-graph.com.cn/docs/1.introduction/what-is-a-graph-database.png "What is a graph database") +![What is a graph database](https://docs-cdn.nebula-graph.com.cn/docs-2.0/1.introduction/what-is-a-graph-database.png "What is a graph database") 图数据库适合存储大多数从现实抽象出的数据类型。世界上几乎所有领域的事物都有内在联系,像关系型数据库这样的建模系统会提取实体之间的关系,并将关系单独存储到表和列中,而实体的类型和属性存储在其他列甚至其他表中,这使得数据管理费时费力。 diff --git a/docs/1.introduction/2.1.path.md b/docs-2.0/1.introduction/2.1.path.md similarity index 100% rename from docs/1.introduction/2.1.path.md rename to docs-2.0/1.introduction/2.1.path.md diff --git a/docs/1.introduction/2.data-model.md b/docs-2.0/1.introduction/2.data-model.md similarity index 100% rename from docs/1.introduction/2.data-model.md rename to docs-2.0/1.introduction/2.data-model.md diff --git a/docs/1.introduction/3.nebula-graph-architecture/1.architecture-overview.md b/docs-2.0/1.introduction/3.nebula-graph-architecture/1.architecture-overview.md similarity index 94% rename from docs/1.introduction/3.nebula-graph-architecture/1.architecture-overview.md rename to docs-2.0/1.introduction/3.nebula-graph-architecture/1.architecture-overview.md index 22f1890982e..a341f563bfd 100644 --- a/docs/1.introduction/3.nebula-graph-architecture/1.architecture-overview.md +++ b/docs-2.0/1.introduction/3.nebula-graph-architecture/1.architecture-overview.md @@ -6,7 +6,7 @@ Nebula Graph 由三种服务构成:Graph 服务、Meta 服务和 Storage 服 下图展示了 Nebula Graph 集群的经典架构。 -![Nebula Graph architecture](https://docs-cdn.nebula-graph.com.cn/docs/1.introduction/2.nebula-graph-architecture/nebula-graph-architecture-1.png "Nebula Graph architecture") +![Nebula Graph architecture](https://docs-cdn.nebula-graph.com.cn/docs-2.0/1.introduction/2.nebula-graph-architecture/nebula-graph-architecture-1.png "Nebula Graph architecture") ## Meta 服务 diff --git a/docs/1.introduction/3.nebula-graph-architecture/2.meta-service.md b/docs-2.0/1.introduction/3.nebula-graph-architecture/2.meta-service.md similarity index 96% rename from docs/1.introduction/3.nebula-graph-architecture/2.meta-service.md rename to docs-2.0/1.introduction/3.nebula-graph-architecture/2.meta-service.md index 01b1c13bc89..5241e8d20a8 100644 --- a/docs/1.introduction/3.nebula-graph-architecture/2.meta-service.md +++ b/docs-2.0/1.introduction/3.nebula-graph-architecture/2.meta-service.md @@ -4,7 +4,7 @@ ## Meta 服务架构 -![The architecture of the Meta Service](https://docs-cdn.nebula-graph.com.cn/docs/1.introduction/2.nebula-graph-architecture/meta-architecture1.png) +![The architecture of the Meta Service](https://docs-cdn.nebula-graph.com.cn/docs-2.0/1.introduction/2.nebula-graph-architecture/meta-architecture1.png) Meta 服务是由 nebula-metad 进程提供的,用户可以根据场景配置 nebula-metad 进程数量: diff --git a/docs/1.introduction/3.nebula-graph-architecture/3.graph-service.md b/docs-2.0/1.introduction/3.nebula-graph-architecture/3.graph-service.md similarity index 93% rename from docs/1.introduction/3.nebula-graph-architecture/3.graph-service.md rename to docs-2.0/1.introduction/3.nebula-graph-architecture/3.graph-service.md index ba76d291580..2243ebd1dad 100644 --- a/docs/1.introduction/3.nebula-graph-architecture/3.graph-service.md +++ b/docs-2.0/1.introduction/3.nebula-graph-architecture/3.graph-service.md @@ -4,7 +4,7 @@ Graph 服务主要负责处理查询请求,包括解析查询语句、校验 ## Graph 服务架构 -![The architecture of the Graph Service](https://docs-cdn.nebula-graph.com.cn/docs/1.introduction/2.nebula-graph-architecture/query-engine-architecture.png) +![The architecture of the Graph Service](https://docs-cdn.nebula-graph.com.cn/docs-2.0/1.introduction/2.nebula-graph-architecture/query-engine-architecture.png) 查询请求发送到 Graph 服务后,会由如下模块依次处理: @@ -22,7 +22,7 @@ Parser 模块收到请求后,通过 Flex(词法分析工具)和 Bison( 例如`GO FROM "Tim" OVER like WHERE properties(edge).likeness > 8.0 YIELD dst(edge)`语句转换的 AST 如下。 -![AST](https://docs-cdn.nebula-graph.com.cn/docs/1.introduction/2.nebula-graph-architecture/parser-ast-tree.png) +![AST](https://docs-cdn.nebula-graph.com.cn/docs-2.0/1.introduction/2.nebula-graph-architecture/parser-ast-tree.png) ## Validator @@ -66,7 +66,7 @@ Validator 模块对生成的 AST 进行语义校验,主要包括: 如果配置文件 `nebula-graphd.conf`中`enable_optimizer` 设置为 `true`,Planner 模块会对 Validator 模块生成的执行计划进行优化。如下图所示。 -![Optimizer](https://docs-cdn.nebula-graph.com.cn/docs/1.introduction/2.nebula-graph-architecture/optimizer.png) +![Optimizer](https://docs-cdn.nebula-graph.com.cn/docs-2.0/1.introduction/2.nebula-graph-architecture/optimizer.png) - 优化前 @@ -92,7 +92,7 @@ Validator 模块对生成的 AST 进行语义校验,主要包括: Executor 模块包含调度器(Scheduler)和执行器(Executor),通过调度器调度执行计划,让执行器根据执行计划生成对应的执行算子,从叶子节点开始执行,直到根节点结束。如下图所示。 -![Executor](https://docs-cdn.nebula-graph.com.cn/docs/1.introduction/2.nebula-graph-architecture/executor.png) +![Executor](https://docs-cdn.nebula-graph.com.cn/docs-2.0/1.introduction/2.nebula-graph-architecture/executor.png) 每一个执行计划节点都一一对应一个执行算子,节点的输入输出在优化执行计划时已经确定,每个算子只需要拿到输入变量中的值进行计算,最后将计算结果放入对应的输出变量中即可,所以只需要从节点 `Start` 一步步执行,最后一个算子的输出变量会作为最终结果返回给客户端。 diff --git a/docs/1.introduction/3.nebula-graph-architecture/4.storage-service.md b/docs-2.0/1.introduction/3.nebula-graph-architecture/4.storage-service.md similarity index 99% rename from docs/1.introduction/3.nebula-graph-architecture/4.storage-service.md rename to docs-2.0/1.introduction/3.nebula-graph-architecture/4.storage-service.md index 874f03affba..06f7faed244 100644 --- a/docs/1.introduction/3.nebula-graph-architecture/4.storage-service.md +++ b/docs-2.0/1.introduction/3.nebula-graph-architecture/4.storage-service.md @@ -126,7 +126,7 @@ Nebula Graph 使用强类型 Schema。 Nebula Graph 中逻辑上的一条边对应着硬盘上的两个键值对(key-value pair),在边的数量和属性较多时,存储放大现象较明显。边的存储方式如下图所示。 -![edge storage](https://docs-cdn.nebula-graph.com.cn/docs/1.introduction/2.nebula-graph-architecture/two-edge-format.png) +![edge storage](https://docs-cdn.nebula-graph.com.cn/docs-2.0/1.introduction/2.nebula-graph-architecture/two-edge-format.png) 上图以最简单的两个点和一条边为例,起点 SrcVertex 通过边 EdgeA 连接目的点 DstVertex,形成路径`(SrcVertex)-[EdgeA]->(DstVertex)`。这两个点和一条边会以 4 个键值对的形式保存在存储层的两个不同分片,即 Partition x 和 Partition y 中,详细说明如下: diff --git a/docs/1.introduction/3.vid.md b/docs-2.0/1.introduction/3.vid.md similarity index 100% rename from docs/1.introduction/3.vid.md rename to docs-2.0/1.introduction/3.vid.md diff --git a/docs/1.introduction/nebula-birdview.png b/docs-2.0/1.introduction/nebula-birdview.png similarity index 100% rename from docs/1.introduction/nebula-birdview.png rename to docs-2.0/1.introduction/nebula-birdview.png diff --git a/docs/14.client/1.nebula-client.md b/docs-2.0/14.client/1.nebula-client.md similarity index 100% rename from docs/14.client/1.nebula-client.md rename to docs-2.0/14.client/1.nebula-client.md diff --git a/docs/14.client/3.nebula-cpp-client.md b/docs-2.0/14.client/3.nebula-cpp-client.md similarity index 100% rename from docs/14.client/3.nebula-cpp-client.md rename to docs-2.0/14.client/3.nebula-cpp-client.md diff --git a/docs/14.client/4.nebula-java-client.md b/docs-2.0/14.client/4.nebula-java-client.md similarity index 100% rename from docs/14.client/4.nebula-java-client.md rename to docs-2.0/14.client/4.nebula-java-client.md diff --git a/docs/14.client/5.nebula-python-client.md b/docs-2.0/14.client/5.nebula-python-client.md similarity index 100% rename from docs/14.client/5.nebula-python-client.md rename to docs-2.0/14.client/5.nebula-python-client.md diff --git a/docs/14.client/6.nebula-go-client.md b/docs-2.0/14.client/6.nebula-go-client.md similarity index 100% rename from docs/14.client/6.nebula-go-client.md rename to docs-2.0/14.client/6.nebula-go-client.md diff --git a/docs/15.contribution/how-to-contribute.md b/docs-2.0/15.contribution/how-to-contribute.md similarity index 100% rename from docs/15.contribution/how-to-contribute.md rename to docs-2.0/15.contribution/how-to-contribute.md diff --git a/docs/2.quick-start/1.quick-start-workflow.md b/docs-2.0/2.quick-start/1.quick-start-workflow.md similarity index 100% rename from docs/2.quick-start/1.quick-start-workflow.md rename to docs-2.0/2.quick-start/1.quick-start-workflow.md diff --git a/docs/2.quick-start/2.install-nebula-graph.md b/docs-2.0/2.quick-start/2.install-nebula-graph.md similarity index 81% rename from docs/2.quick-start/2.install-nebula-graph.md rename to docs-2.0/2.quick-start/2.install-nebula-graph.md index fe1fcb9f97d..0c83c32e63a 100644 --- a/docs/2.quick-start/2.install-nebula-graph.md +++ b/docs-2.0/2.quick-start/2.install-nebula-graph.md @@ -1,4 +1,4 @@ # 步骤 1:安装 Nebula Graph {% include "/source_install-nebula-graph-by-rpm-or-deb.md" %} - + diff --git a/docs/2.quick-start/3.connect-to-nebula-graph.md b/docs-2.0/2.quick-start/3.connect-to-nebula-graph.md similarity index 80% rename from docs/2.quick-start/3.connect-to-nebula-graph.md rename to docs-2.0/2.quick-start/3.connect-to-nebula-graph.md index f3e2e2ec550..cdc162635db 100644 --- a/docs/2.quick-start/3.connect-to-nebula-graph.md +++ b/docs-2.0/2.quick-start/3.connect-to-nebula-graph.md @@ -1,4 +1,4 @@ # 步骤 3:连接 Nebula Graph {% include "/source_connect-to-nebula-graph.md" %} - + diff --git a/docs/2.quick-start/4.nebula-graph-crud.md b/docs-2.0/2.quick-start/4.nebula-graph-crud.md similarity index 99% rename from docs/2.quick-start/4.nebula-graph-crud.md rename to docs-2.0/2.quick-start/4.nebula-graph-crud.md index 447d6a1e697..e72458bfad4 100644 --- a/docs/2.quick-start/4.nebula-graph-crud.md +++ b/docs-2.0/2.quick-start/4.nebula-graph-crud.md @@ -8,7 +8,7 @@ 一个 Nebula Graph 实例由一个或多个图空间组成。每个图空间都是物理隔离的,用户可以在同一个实例中使用不同的图空间存储不同的数据集。 -![Nebula Graph and graph spaces](https://docs-cdn.nebula-graph.com.cn/docs/2.quick-start/nebula-graph-instance-and-graph-spaces.png) +![Nebula Graph and graph spaces](https://docs-cdn.nebula-graph.com.cn/docs-2.0/2.quick-start/nebula-graph-instance-and-graph-spaces.png) 为了在图空间中插入数据,需要为图数据库定义一个 Schema。Nebula Graph 的 Schema 是由如下几部分组成。 diff --git a/docs/2.quick-start/5.start-stop-service.md b/docs-2.0/2.quick-start/5.start-stop-service.md similarity index 80% rename from docs/2.quick-start/5.start-stop-service.md rename to docs-2.0/2.quick-start/5.start-stop-service.md index 9c3a8592dde..df0c7a38f19 100644 --- a/docs/2.quick-start/5.start-stop-service.md +++ b/docs-2.0/2.quick-start/5.start-stop-service.md @@ -1,4 +1,4 @@ # 步骤 2:启动 Nebula Graph 服务 {% include "/source_manage-service.md" %} - + diff --git a/docs/2.quick-start/6.cheatsheet-for-ngql-command.md b/docs-2.0/2.quick-start/6.cheatsheet-for-ngql-command.md similarity index 100% rename from docs/2.quick-start/6.cheatsheet-for-ngql-command.md rename to docs-2.0/2.quick-start/6.cheatsheet-for-ngql-command.md diff --git a/docs/2.quick-start/dataset-for-crud.png b/docs-2.0/2.quick-start/dataset-for-crud.png similarity index 100% rename from docs/2.quick-start/dataset-for-crud.png rename to docs-2.0/2.quick-start/dataset-for-crud.png diff --git a/docs/20.appendix/0.FAQ.md b/docs-2.0/20.appendix/0.FAQ.md similarity index 100% rename from docs/20.appendix/0.FAQ.md rename to docs-2.0/20.appendix/0.FAQ.md diff --git a/docs/20.appendix/6.eco-tool-version.md b/docs-2.0/20.appendix/6.eco-tool-version.md similarity index 100% rename from docs/20.appendix/6.eco-tool-version.md rename to docs-2.0/20.appendix/6.eco-tool-version.md diff --git a/docs/20.appendix/Unknown-2.png b/docs-2.0/20.appendix/Unknown-2.png similarity index 100% rename from docs/20.appendix/Unknown-2.png rename to docs-2.0/20.appendix/Unknown-2.png diff --git a/docs/20.appendix/Unknown-3.png b/docs-2.0/20.appendix/Unknown-3.png similarity index 100% rename from docs/20.appendix/Unknown-3.png rename to docs-2.0/20.appendix/Unknown-3.png diff --git a/docs/20.appendix/learning-path.md b/docs-2.0/20.appendix/learning-path.md similarity index 100% rename from docs/20.appendix/learning-path.md rename to docs-2.0/20.appendix/learning-path.md diff --git a/docs/20.appendix/learning-path.png b/docs-2.0/20.appendix/learning-path.png similarity index 100% rename from docs/20.appendix/learning-path.png rename to docs-2.0/20.appendix/learning-path.png diff --git a/docs/20.appendix/mind-map.md b/docs-2.0/20.appendix/mind-map.md similarity index 100% rename from docs/20.appendix/mind-map.md rename to docs-2.0/20.appendix/mind-map.md diff --git a/docs/20.appendix/releasenote.md b/docs-2.0/20.appendix/releasenote.md similarity index 100% rename from docs/20.appendix/releasenote.md rename to docs-2.0/20.appendix/releasenote.md diff --git a/docs/20.appendix/write-tools.md b/docs-2.0/20.appendix/write-tools.md similarity index 100% rename from docs/20.appendix/write-tools.md rename to docs-2.0/20.appendix/write-tools.md diff --git a/docs/3.ngql-guide/1.nGQL-overview/1.overview.md b/docs-2.0/3.ngql-guide/1.nGQL-overview/1.overview.md similarity index 100% rename from docs/3.ngql-guide/1.nGQL-overview/1.overview.md rename to docs-2.0/3.ngql-guide/1.nGQL-overview/1.overview.md diff --git a/docs/3.ngql-guide/1.nGQL-overview/3.graph-patterns.md b/docs-2.0/3.ngql-guide/1.nGQL-overview/3.graph-patterns.md similarity index 100% rename from docs/3.ngql-guide/1.nGQL-overview/3.graph-patterns.md rename to docs-2.0/3.ngql-guide/1.nGQL-overview/3.graph-patterns.md diff --git a/docs/3.ngql-guide/1.nGQL-overview/comments.md b/docs-2.0/3.ngql-guide/1.nGQL-overview/comments.md similarity index 100% rename from docs/3.ngql-guide/1.nGQL-overview/comments.md rename to docs-2.0/3.ngql-guide/1.nGQL-overview/comments.md diff --git a/docs/3.ngql-guide/1.nGQL-overview/identifier-case-sensitivity.md b/docs-2.0/3.ngql-guide/1.nGQL-overview/identifier-case-sensitivity.md similarity index 100% rename from docs/3.ngql-guide/1.nGQL-overview/identifier-case-sensitivity.md rename to docs-2.0/3.ngql-guide/1.nGQL-overview/identifier-case-sensitivity.md diff --git a/docs/3.ngql-guide/1.nGQL-overview/keywords-and-reserved-words.md b/docs-2.0/3.ngql-guide/1.nGQL-overview/keywords-and-reserved-words.md similarity index 100% rename from docs/3.ngql-guide/1.nGQL-overview/keywords-and-reserved-words.md rename to docs-2.0/3.ngql-guide/1.nGQL-overview/keywords-and-reserved-words.md diff --git a/docs/3.ngql-guide/1.nGQL-overview/ngql-style-guide.md b/docs-2.0/3.ngql-guide/1.nGQL-overview/ngql-style-guide.md similarity index 100% rename from docs/3.ngql-guide/1.nGQL-overview/ngql-style-guide.md rename to docs-2.0/3.ngql-guide/1.nGQL-overview/ngql-style-guide.md diff --git a/docs/3.ngql-guide/10.tag-statements/1.create-tag.md b/docs-2.0/3.ngql-guide/10.tag-statements/1.create-tag.md similarity index 100% rename from docs/3.ngql-guide/10.tag-statements/1.create-tag.md rename to docs-2.0/3.ngql-guide/10.tag-statements/1.create-tag.md diff --git a/docs/3.ngql-guide/10.tag-statements/2.drop-tag.md b/docs-2.0/3.ngql-guide/10.tag-statements/2.drop-tag.md similarity index 100% rename from docs/3.ngql-guide/10.tag-statements/2.drop-tag.md rename to docs-2.0/3.ngql-guide/10.tag-statements/2.drop-tag.md diff --git a/docs/3.ngql-guide/10.tag-statements/3.alter-tag.md b/docs-2.0/3.ngql-guide/10.tag-statements/3.alter-tag.md similarity index 100% rename from docs/3.ngql-guide/10.tag-statements/3.alter-tag.md rename to docs-2.0/3.ngql-guide/10.tag-statements/3.alter-tag.md diff --git a/docs/3.ngql-guide/10.tag-statements/4.show-tags.md b/docs-2.0/3.ngql-guide/10.tag-statements/4.show-tags.md similarity index 100% rename from docs/3.ngql-guide/10.tag-statements/4.show-tags.md rename to docs-2.0/3.ngql-guide/10.tag-statements/4.show-tags.md diff --git a/docs/3.ngql-guide/10.tag-statements/5.describe-tag.md b/docs-2.0/3.ngql-guide/10.tag-statements/5.describe-tag.md similarity index 100% rename from docs/3.ngql-guide/10.tag-statements/5.describe-tag.md rename to docs-2.0/3.ngql-guide/10.tag-statements/5.describe-tag.md diff --git a/docs/3.ngql-guide/10.tag-statements/6.delete-tag.md b/docs-2.0/3.ngql-guide/10.tag-statements/6.delete-tag.md similarity index 100% rename from docs/3.ngql-guide/10.tag-statements/6.delete-tag.md rename to docs-2.0/3.ngql-guide/10.tag-statements/6.delete-tag.md diff --git a/docs/3.ngql-guide/10.tag-statements/improve-query-by-tag-index.md b/docs-2.0/3.ngql-guide/10.tag-statements/improve-query-by-tag-index.md similarity index 100% rename from docs/3.ngql-guide/10.tag-statements/improve-query-by-tag-index.md rename to docs-2.0/3.ngql-guide/10.tag-statements/improve-query-by-tag-index.md diff --git a/docs/3.ngql-guide/11.edge-type-statements/1.create-edge.md b/docs-2.0/3.ngql-guide/11.edge-type-statements/1.create-edge.md similarity index 100% rename from docs/3.ngql-guide/11.edge-type-statements/1.create-edge.md rename to docs-2.0/3.ngql-guide/11.edge-type-statements/1.create-edge.md diff --git a/docs/3.ngql-guide/11.edge-type-statements/2.drop-edge.md b/docs-2.0/3.ngql-guide/11.edge-type-statements/2.drop-edge.md similarity index 100% rename from docs/3.ngql-guide/11.edge-type-statements/2.drop-edge.md rename to docs-2.0/3.ngql-guide/11.edge-type-statements/2.drop-edge.md diff --git a/docs/3.ngql-guide/11.edge-type-statements/3.alter-edge.md b/docs-2.0/3.ngql-guide/11.edge-type-statements/3.alter-edge.md similarity index 100% rename from docs/3.ngql-guide/11.edge-type-statements/3.alter-edge.md rename to docs-2.0/3.ngql-guide/11.edge-type-statements/3.alter-edge.md diff --git a/docs/3.ngql-guide/11.edge-type-statements/4.show-edges.md b/docs-2.0/3.ngql-guide/11.edge-type-statements/4.show-edges.md similarity index 100% rename from docs/3.ngql-guide/11.edge-type-statements/4.show-edges.md rename to docs-2.0/3.ngql-guide/11.edge-type-statements/4.show-edges.md diff --git a/docs/3.ngql-guide/11.edge-type-statements/5.describe-edge.md b/docs-2.0/3.ngql-guide/11.edge-type-statements/5.describe-edge.md similarity index 100% rename from docs/3.ngql-guide/11.edge-type-statements/5.describe-edge.md rename to docs-2.0/3.ngql-guide/11.edge-type-statements/5.describe-edge.md diff --git a/docs/3.ngql-guide/12.vertex-statements/1.insert-vertex.md b/docs-2.0/3.ngql-guide/12.vertex-statements/1.insert-vertex.md similarity index 100% rename from docs/3.ngql-guide/12.vertex-statements/1.insert-vertex.md rename to docs-2.0/3.ngql-guide/12.vertex-statements/1.insert-vertex.md diff --git a/docs/3.ngql-guide/12.vertex-statements/2.update-vertex.md b/docs-2.0/3.ngql-guide/12.vertex-statements/2.update-vertex.md similarity index 100% rename from docs/3.ngql-guide/12.vertex-statements/2.update-vertex.md rename to docs-2.0/3.ngql-guide/12.vertex-statements/2.update-vertex.md diff --git a/docs/3.ngql-guide/12.vertex-statements/3.upsert-vertex.md b/docs-2.0/3.ngql-guide/12.vertex-statements/3.upsert-vertex.md similarity index 100% rename from docs/3.ngql-guide/12.vertex-statements/3.upsert-vertex.md rename to docs-2.0/3.ngql-guide/12.vertex-statements/3.upsert-vertex.md diff --git a/docs/3.ngql-guide/12.vertex-statements/4.delete-vertex.md b/docs-2.0/3.ngql-guide/12.vertex-statements/4.delete-vertex.md similarity index 100% rename from docs/3.ngql-guide/12.vertex-statements/4.delete-vertex.md rename to docs-2.0/3.ngql-guide/12.vertex-statements/4.delete-vertex.md diff --git a/docs/3.ngql-guide/13.edge-statements/1.insert-edge.md b/docs-2.0/3.ngql-guide/13.edge-statements/1.insert-edge.md similarity index 100% rename from docs/3.ngql-guide/13.edge-statements/1.insert-edge.md rename to docs-2.0/3.ngql-guide/13.edge-statements/1.insert-edge.md diff --git a/docs/3.ngql-guide/13.edge-statements/2.update-edge.md b/docs-2.0/3.ngql-guide/13.edge-statements/2.update-edge.md similarity index 100% rename from docs/3.ngql-guide/13.edge-statements/2.update-edge.md rename to docs-2.0/3.ngql-guide/13.edge-statements/2.update-edge.md diff --git a/docs/3.ngql-guide/13.edge-statements/3.upsert-edge.md b/docs-2.0/3.ngql-guide/13.edge-statements/3.upsert-edge.md similarity index 100% rename from docs/3.ngql-guide/13.edge-statements/3.upsert-edge.md rename to docs-2.0/3.ngql-guide/13.edge-statements/3.upsert-edge.md diff --git a/docs/3.ngql-guide/13.edge-statements/4.delete-edge.md b/docs-2.0/3.ngql-guide/13.edge-statements/4.delete-edge.md similarity index 100% rename from docs/3.ngql-guide/13.edge-statements/4.delete-edge.md rename to docs-2.0/3.ngql-guide/13.edge-statements/4.delete-edge.md diff --git a/docs/3.ngql-guide/14.native-index-statements/1.create-native-index.md b/docs-2.0/3.ngql-guide/14.native-index-statements/1.create-native-index.md similarity index 100% rename from docs/3.ngql-guide/14.native-index-statements/1.create-native-index.md rename to docs-2.0/3.ngql-guide/14.native-index-statements/1.create-native-index.md diff --git a/docs/3.ngql-guide/14.native-index-statements/2.1.show-create-index.md b/docs-2.0/3.ngql-guide/14.native-index-statements/2.1.show-create-index.md similarity index 100% rename from docs/3.ngql-guide/14.native-index-statements/2.1.show-create-index.md rename to docs-2.0/3.ngql-guide/14.native-index-statements/2.1.show-create-index.md diff --git a/docs/3.ngql-guide/14.native-index-statements/2.show-native-indexes.md b/docs-2.0/3.ngql-guide/14.native-index-statements/2.show-native-indexes.md similarity index 100% rename from docs/3.ngql-guide/14.native-index-statements/2.show-native-indexes.md rename to docs-2.0/3.ngql-guide/14.native-index-statements/2.show-native-indexes.md diff --git a/docs/3.ngql-guide/14.native-index-statements/3.describe-native-index.md b/docs-2.0/3.ngql-guide/14.native-index-statements/3.describe-native-index.md similarity index 100% rename from docs/3.ngql-guide/14.native-index-statements/3.describe-native-index.md rename to docs-2.0/3.ngql-guide/14.native-index-statements/3.describe-native-index.md diff --git a/docs/3.ngql-guide/14.native-index-statements/4.rebuild-native-index.md b/docs-2.0/3.ngql-guide/14.native-index-statements/4.rebuild-native-index.md similarity index 100% rename from docs/3.ngql-guide/14.native-index-statements/4.rebuild-native-index.md rename to docs-2.0/3.ngql-guide/14.native-index-statements/4.rebuild-native-index.md diff --git a/docs/3.ngql-guide/14.native-index-statements/5.show-native-index-status.md b/docs-2.0/3.ngql-guide/14.native-index-statements/5.show-native-index-status.md similarity index 100% rename from docs/3.ngql-guide/14.native-index-statements/5.show-native-index-status.md rename to docs-2.0/3.ngql-guide/14.native-index-statements/5.show-native-index-status.md diff --git a/docs/3.ngql-guide/14.native-index-statements/6.drop-native-index.md b/docs-2.0/3.ngql-guide/14.native-index-statements/6.drop-native-index.md similarity index 100% rename from docs/3.ngql-guide/14.native-index-statements/6.drop-native-index.md rename to docs-2.0/3.ngql-guide/14.native-index-statements/6.drop-native-index.md diff --git a/docs/3.ngql-guide/14.native-index-statements/README.md b/docs-2.0/3.ngql-guide/14.native-index-statements/README.md similarity index 100% rename from docs/3.ngql-guide/14.native-index-statements/README.md rename to docs-2.0/3.ngql-guide/14.native-index-statements/README.md diff --git a/docs/3.ngql-guide/15.full-text-index-statements/1.search-with-text-based-index.md b/docs-2.0/3.ngql-guide/15.full-text-index-statements/1.search-with-text-based-index.md similarity index 100% rename from docs/3.ngql-guide/15.full-text-index-statements/1.search-with-text-based-index.md rename to docs-2.0/3.ngql-guide/15.full-text-index-statements/1.search-with-text-based-index.md diff --git a/docs/3.ngql-guide/16.subgraph-and-path/1.get-subgraph.md b/docs-2.0/3.ngql-guide/16.subgraph-and-path/1.get-subgraph.md similarity index 100% rename from docs/3.ngql-guide/16.subgraph-and-path/1.get-subgraph.md rename to docs-2.0/3.ngql-guide/16.subgraph-and-path/1.get-subgraph.md diff --git a/docs/3.ngql-guide/16.subgraph-and-path/2.find-path.md b/docs-2.0/3.ngql-guide/16.subgraph-and-path/2.find-path.md similarity index 100% rename from docs/3.ngql-guide/16.subgraph-and-path/2.find-path.md rename to docs-2.0/3.ngql-guide/16.subgraph-and-path/2.find-path.md diff --git a/docs/3.ngql-guide/16.subgraph-and-path/subgraph-1.png b/docs-2.0/3.ngql-guide/16.subgraph-and-path/subgraph-1.png similarity index 100% rename from docs/3.ngql-guide/16.subgraph-and-path/subgraph-1.png rename to docs-2.0/3.ngql-guide/16.subgraph-and-path/subgraph-1.png diff --git a/docs/3.ngql-guide/16.subgraph-and-path/subgraph-2.png b/docs-2.0/3.ngql-guide/16.subgraph-and-path/subgraph-2.png similarity index 100% rename from docs/3.ngql-guide/16.subgraph-and-path/subgraph-2.png rename to docs-2.0/3.ngql-guide/16.subgraph-and-path/subgraph-2.png diff --git a/docs/3.ngql-guide/16.subgraph-and-path/subgraph2.png b/docs-2.0/3.ngql-guide/16.subgraph-and-path/subgraph2.png similarity index 100% rename from docs/3.ngql-guide/16.subgraph-and-path/subgraph2.png rename to docs-2.0/3.ngql-guide/16.subgraph-and-path/subgraph2.png diff --git a/docs/3.ngql-guide/17.query-tuning-statements/1.explain-and-profile.md b/docs-2.0/3.ngql-guide/17.query-tuning-statements/1.explain-and-profile.md similarity index 98% rename from docs/3.ngql-guide/17.query-tuning-statements/1.explain-and-profile.md rename to docs-2.0/3.ngql-guide/17.query-tuning-statements/1.explain-and-profile.md index f54d26d0d8f..a9287513acb 100644 --- a/docs/3.ngql-guide/17.query-tuning-statements/1.explain-and-profile.md +++ b/docs-2.0/3.ngql-guide/17.query-tuning-statements/1.explain-and-profile.md @@ -110,4 +110,4 @@ Execution Plan 将上述示例的 DOT 语言转换为 Graphviz 图,如下所示。 -![Graphviz graph of EXPLAIN SHOW TAGS](https://docs-cdn.nebula-graph.com.cn/docs/3.ngql-guide/16.query-tuning-statements/explain-show-tags.png) +![Graphviz graph of EXPLAIN SHOW TAGS](https://docs-cdn.nebula-graph.com.cn/docs-2.0/3.ngql-guide/16.query-tuning-statements/explain-show-tags.png) diff --git a/docs/3.ngql-guide/18.operation-and-maintenance-statements/.1.configs-syntax.md b/docs-2.0/3.ngql-guide/18.operation-and-maintenance-statements/.1.configs-syntax.md similarity index 100% rename from docs/3.ngql-guide/18.operation-and-maintenance-statements/.1.configs-syntax.md rename to docs-2.0/3.ngql-guide/18.operation-and-maintenance-statements/.1.configs-syntax.md diff --git a/docs/3.ngql-guide/18.operation-and-maintenance-statements/2.balance-syntax.md b/docs-2.0/3.ngql-guide/18.operation-and-maintenance-statements/2.balance-syntax.md similarity index 100% rename from docs/3.ngql-guide/18.operation-and-maintenance-statements/2.balance-syntax.md rename to docs-2.0/3.ngql-guide/18.operation-and-maintenance-statements/2.balance-syntax.md diff --git a/docs/3.ngql-guide/18.operation-and-maintenance-statements/4.job-statements.md b/docs-2.0/3.ngql-guide/18.operation-and-maintenance-statements/4.job-statements.md similarity index 100% rename from docs/3.ngql-guide/18.operation-and-maintenance-statements/4.job-statements.md rename to docs-2.0/3.ngql-guide/18.operation-and-maintenance-statements/4.job-statements.md diff --git a/docs/3.ngql-guide/18.operation-and-maintenance-statements/6.kill-query.md b/docs-2.0/3.ngql-guide/18.operation-and-maintenance-statements/6.kill-query.md similarity index 100% rename from docs/3.ngql-guide/18.operation-and-maintenance-statements/6.kill-query.md rename to docs-2.0/3.ngql-guide/18.operation-and-maintenance-statements/6.kill-query.md diff --git a/docs/3.ngql-guide/3.data-types/1.numeric.md b/docs-2.0/3.ngql-guide/3.data-types/1.numeric.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/1.numeric.md rename to docs-2.0/3.ngql-guide/3.data-types/1.numeric.md diff --git a/docs/3.ngql-guide/3.data-types/10.geography.md b/docs-2.0/3.ngql-guide/3.data-types/10.geography.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/10.geography.md rename to docs-2.0/3.ngql-guide/3.data-types/10.geography.md diff --git a/docs/3.ngql-guide/3.data-types/2.boolean.md b/docs-2.0/3.ngql-guide/3.data-types/2.boolean.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/2.boolean.md rename to docs-2.0/3.ngql-guide/3.data-types/2.boolean.md diff --git a/docs/3.ngql-guide/3.data-types/3.string.md b/docs-2.0/3.ngql-guide/3.data-types/3.string.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/3.string.md rename to docs-2.0/3.ngql-guide/3.data-types/3.string.md diff --git a/docs/3.ngql-guide/3.data-types/4.date-and-time.md b/docs-2.0/3.ngql-guide/3.data-types/4.date-and-time.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/4.date-and-time.md rename to docs-2.0/3.ngql-guide/3.data-types/4.date-and-time.md diff --git a/docs/3.ngql-guide/3.data-types/5.null.md b/docs-2.0/3.ngql-guide/3.data-types/5.null.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/5.null.md rename to docs-2.0/3.ngql-guide/3.data-types/5.null.md diff --git a/docs/3.ngql-guide/3.data-types/6.list.md b/docs-2.0/3.ngql-guide/3.data-types/6.list.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/6.list.md rename to docs-2.0/3.ngql-guide/3.data-types/6.list.md diff --git a/docs/3.ngql-guide/3.data-types/7.set.md b/docs-2.0/3.ngql-guide/3.data-types/7.set.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/7.set.md rename to docs-2.0/3.ngql-guide/3.data-types/7.set.md diff --git a/docs/3.ngql-guide/3.data-types/8.map.md b/docs-2.0/3.ngql-guide/3.data-types/8.map.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/8.map.md rename to docs-2.0/3.ngql-guide/3.data-types/8.map.md diff --git a/docs/3.ngql-guide/3.data-types/9.type-conversion.md b/docs-2.0/3.ngql-guide/3.data-types/9.type-conversion.md similarity index 100% rename from docs/3.ngql-guide/3.data-types/9.type-conversion.md rename to docs-2.0/3.ngql-guide/3.data-types/9.type-conversion.md diff --git a/docs/3.ngql-guide/4.variable-and-composite-queries/1.composite-queries.md b/docs-2.0/3.ngql-guide/4.variable-and-composite-queries/1.composite-queries.md similarity index 100% rename from docs/3.ngql-guide/4.variable-and-composite-queries/1.composite-queries.md rename to docs-2.0/3.ngql-guide/4.variable-and-composite-queries/1.composite-queries.md diff --git a/docs/3.ngql-guide/4.variable-and-composite-queries/2.user-defined-variables.md b/docs-2.0/3.ngql-guide/4.variable-and-composite-queries/2.user-defined-variables.md similarity index 100% rename from docs/3.ngql-guide/4.variable-and-composite-queries/2.user-defined-variables.md rename to docs-2.0/3.ngql-guide/4.variable-and-composite-queries/2.user-defined-variables.md diff --git a/docs/3.ngql-guide/4.variable-and-composite-queries/3.property-reference.md b/docs-2.0/3.ngql-guide/4.variable-and-composite-queries/3.property-reference.md similarity index 100% rename from docs/3.ngql-guide/4.variable-and-composite-queries/3.property-reference.md rename to docs-2.0/3.ngql-guide/4.variable-and-composite-queries/3.property-reference.md diff --git a/docs/3.ngql-guide/5.operators/1.comparison.md b/docs-2.0/3.ngql-guide/5.operators/1.comparison.md similarity index 100% rename from docs/3.ngql-guide/5.operators/1.comparison.md rename to docs-2.0/3.ngql-guide/5.operators/1.comparison.md diff --git a/docs/3.ngql-guide/5.operators/2.boolean.md b/docs-2.0/3.ngql-guide/5.operators/2.boolean.md similarity index 100% rename from docs/3.ngql-guide/5.operators/2.boolean.md rename to docs-2.0/3.ngql-guide/5.operators/2.boolean.md diff --git a/docs/3.ngql-guide/5.operators/4.pipe.md b/docs-2.0/3.ngql-guide/5.operators/4.pipe.md similarity index 100% rename from docs/3.ngql-guide/5.operators/4.pipe.md rename to docs-2.0/3.ngql-guide/5.operators/4.pipe.md diff --git a/docs/3.ngql-guide/5.operators/5.property-reference.md b/docs-2.0/3.ngql-guide/5.operators/5.property-reference.md similarity index 100% rename from docs/3.ngql-guide/5.operators/5.property-reference.md rename to docs-2.0/3.ngql-guide/5.operators/5.property-reference.md diff --git a/docs/3.ngql-guide/5.operators/6.set.md b/docs-2.0/3.ngql-guide/5.operators/6.set.md similarity index 100% rename from docs/3.ngql-guide/5.operators/6.set.md rename to docs-2.0/3.ngql-guide/5.operators/6.set.md diff --git a/docs/3.ngql-guide/5.operators/7.string.md b/docs-2.0/3.ngql-guide/5.operators/7.string.md similarity index 100% rename from docs/3.ngql-guide/5.operators/7.string.md rename to docs-2.0/3.ngql-guide/5.operators/7.string.md diff --git a/docs/3.ngql-guide/5.operators/8.list.md b/docs-2.0/3.ngql-guide/5.operators/8.list.md similarity index 100% rename from docs/3.ngql-guide/5.operators/8.list.md rename to docs-2.0/3.ngql-guide/5.operators/8.list.md diff --git a/docs/3.ngql-guide/5.operators/9.precedence.md b/docs-2.0/3.ngql-guide/5.operators/9.precedence.md similarity index 100% rename from docs/3.ngql-guide/5.operators/9.precedence.md rename to docs-2.0/3.ngql-guide/5.operators/9.precedence.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/1.math.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/1.math.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/1.math.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/1.math.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/10.collect.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/10.collect.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/10.collect.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/10.collect.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/11.reduce.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/11.reduce.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/11.reduce.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/11.reduce.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/12.hash.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/12.hash.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/12.hash.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/12.hash.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/13.concat.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/13.concat.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/13.concat.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/13.concat.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/14.geo.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/14.geo.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/14.geo.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/14.geo.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/2.string.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/2.string.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/2.string.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/2.string.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/3.date-and-time.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/3.date-and-time.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/3.date-and-time.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/3.date-and-time.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/4.schema.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/4.schema.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/4.schema.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/4.schema.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/5.case-expressions.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/5.case-expressions.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/5.case-expressions.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/5.case-expressions.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/6.list.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/6.list.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/6.list.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/6.list.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/7.count.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/7.count.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/7.count.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/7.count.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/8.predicate.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/8.predicate.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/8.predicate.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/8.predicate.md diff --git a/docs/3.ngql-guide/6.functions-and-expressions/9.user-defined-functions.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/9.user-defined-functions.md similarity index 100% rename from docs/3.ngql-guide/6.functions-and-expressions/9.user-defined-functions.md rename to docs-2.0/3.ngql-guide/6.functions-and-expressions/9.user-defined-functions.md diff --git a/docs/3.ngql-guide/7.general-query-statements/2.match.md b/docs-2.0/3.ngql-guide/7.general-query-statements/2.match.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/2.match.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/2.match.md diff --git a/docs/3.ngql-guide/7.general-query-statements/3.go.md b/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/3.go.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md diff --git a/docs/3.ngql-guide/7.general-query-statements/4.fetch.md b/docs-2.0/3.ngql-guide/7.general-query-statements/4.fetch.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/4.fetch.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/4.fetch.md diff --git a/docs/3.ngql-guide/7.general-query-statements/5.lookup.md b/docs-2.0/3.ngql-guide/7.general-query-statements/5.lookup.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/5.lookup.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/5.lookup.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/1.show-charset.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/1.show-charset.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/1.show-charset.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/1.show-charset.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/10.show-roles.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/10.show-roles.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/10.show-roles.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/10.show-roles.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/11.show-snapshots.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/11.show-snapshots.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/11.show-snapshots.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/11.show-snapshots.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/12.show-spaces.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/12.show-spaces.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/12.show-spaces.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/12.show-spaces.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/14.show-stats.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/14.show-stats.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/14.show-stats.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/14.show-stats.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/15.show-tags-edges.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/15.show-tags-edges.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/15.show-tags-edges.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/15.show-tags-edges.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/16.show-users.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/16.show-users.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/16.show-users.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/16.show-users.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/17.show-sessions.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/17.show-sessions.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/17.show-sessions.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/17.show-sessions.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/18.show-queries.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/18.show-queries.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/18.show-queries.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/18.show-queries.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/19.show-meta-leader.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/19.show-meta-leader.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/19.show-meta-leader.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/19.show-meta-leader.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/2.show-collation.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/2.show-collation.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/2.show-collation.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/2.show-collation.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/4.show-create-space.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/4.show-create-space.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/4.show-create-space.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/4.show-create-space.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/5.show-create-tag-edge.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/5.show-create-tag-edge.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/5.show-create-tag-edge.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/5.show-create-tag-edge.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/6.show-hosts.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/6.show-hosts.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/6.show-hosts.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/6.show-hosts.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/7.show-index-status.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/7.show-index-status.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/7.show-index-status.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/7.show-index-status.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/8.show-indexes.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/8.show-indexes.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/8.show-indexes.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/8.show-indexes.md diff --git a/docs/3.ngql-guide/7.general-query-statements/6.show/9.show-parts.md b/docs-2.0/3.ngql-guide/7.general-query-statements/6.show/9.show-parts.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/6.show/9.show-parts.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/6.show/9.show-parts.md diff --git a/docs/3.ngql-guide/7.general-query-statements/optional-match.md b/docs-2.0/3.ngql-guide/7.general-query-statements/optional-match.md similarity index 100% rename from docs/3.ngql-guide/7.general-query-statements/optional-match.md rename to docs-2.0/3.ngql-guide/7.general-query-statements/optional-match.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/group-by.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/group-by.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/group-by.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/group-by.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/limit.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/limit.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/limit.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/limit.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/limit_in_go_1.png b/docs-2.0/3.ngql-guide/8.clauses-and-options/limit_in_go_1.png similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/limit_in_go_1.png rename to docs-2.0/3.ngql-guide/8.clauses-and-options/limit_in_go_1.png diff --git a/docs/3.ngql-guide/8.clauses-and-options/order-by.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/order-by.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/order-by.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/order-by.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/return.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/return.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/return.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/return.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/sample.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/sample.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/sample.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/sample.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/sample_in_go.png b/docs-2.0/3.ngql-guide/8.clauses-and-options/sample_in_go.png similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/sample_in_go.png rename to docs-2.0/3.ngql-guide/8.clauses-and-options/sample_in_go.png diff --git a/docs/3.ngql-guide/8.clauses-and-options/ttl-options.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/ttl-options.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/ttl-options.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/ttl-options.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/unwind.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/unwind.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/unwind.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/unwind.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/where.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/where.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/where.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/where.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/with.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/with.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/with.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/with.md diff --git a/docs/3.ngql-guide/8.clauses-and-options/yield.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/yield.md similarity index 100% rename from docs/3.ngql-guide/8.clauses-and-options/yield.md rename to docs-2.0/3.ngql-guide/8.clauses-and-options/yield.md diff --git a/docs/3.ngql-guide/9.space-statements/1.create-space.md b/docs-2.0/3.ngql-guide/9.space-statements/1.create-space.md similarity index 100% rename from docs/3.ngql-guide/9.space-statements/1.create-space.md rename to docs-2.0/3.ngql-guide/9.space-statements/1.create-space.md diff --git a/docs/3.ngql-guide/9.space-statements/2.use-space.md b/docs-2.0/3.ngql-guide/9.space-statements/2.use-space.md similarity index 100% rename from docs/3.ngql-guide/9.space-statements/2.use-space.md rename to docs-2.0/3.ngql-guide/9.space-statements/2.use-space.md diff --git a/docs/3.ngql-guide/9.space-statements/3.show-spaces.md b/docs-2.0/3.ngql-guide/9.space-statements/3.show-spaces.md similarity index 100% rename from docs/3.ngql-guide/9.space-statements/3.show-spaces.md rename to docs-2.0/3.ngql-guide/9.space-statements/3.show-spaces.md diff --git a/docs/3.ngql-guide/9.space-statements/4.describe-space.md b/docs-2.0/3.ngql-guide/9.space-statements/4.describe-space.md similarity index 100% rename from docs/3.ngql-guide/9.space-statements/4.describe-space.md rename to docs-2.0/3.ngql-guide/9.space-statements/4.describe-space.md diff --git a/docs/3.ngql-guide/9.space-statements/5.drop-space.md b/docs-2.0/3.ngql-guide/9.space-statements/5.drop-space.md similarity index 100% rename from docs/3.ngql-guide/9.space-statements/5.drop-space.md rename to docs-2.0/3.ngql-guide/9.space-statements/5.drop-space.md diff --git a/docs/4.deployment-and-installation/1.resource-preparations.md b/docs-2.0/4.deployment-and-installation/1.resource-preparations.md similarity index 100% rename from docs/4.deployment-and-installation/1.resource-preparations.md rename to docs-2.0/4.deployment-and-installation/1.resource-preparations.md diff --git a/docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md similarity index 100% rename from docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md rename to docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md diff --git a/docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb.md b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb.md similarity index 82% rename from docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb.md rename to docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb.md index 15667e9ad71..468a6d90526 100644 --- a/docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb.md +++ b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb.md @@ -1,4 +1,4 @@ # 使用 RPM 或 DEB 包安装 Nebula Graph {% include "/source_install-nebula-graph-by-rpm-or-deb.md" %} - + diff --git a/docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md similarity index 100% rename from docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md rename to docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md diff --git a/docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/4.install-nebula-graph-from-tar.md b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/4.install-nebula-graph-from-tar.md similarity index 100% rename from docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/4.install-nebula-graph-from-tar.md rename to docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/4.install-nebula-graph-from-tar.md diff --git a/docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md b/docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md similarity index 100% rename from docs/4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md rename to docs-2.0/4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md diff --git a/docs/4.deployment-and-installation/3.upgrade-nebula-graph/upgrade-nebula-from-200-to-latest.md b/docs-2.0/4.deployment-and-installation/3.upgrade-nebula-graph/upgrade-nebula-from-200-to-latest.md similarity index 100% rename from docs/4.deployment-and-installation/3.upgrade-nebula-graph/upgrade-nebula-from-200-to-latest.md rename to docs-2.0/4.deployment-and-installation/3.upgrade-nebula-graph/upgrade-nebula-from-200-to-latest.md diff --git a/docs/4.deployment-and-installation/3.upgrade-nebula-graph/upgrade-nebula-graph-to-latest.md b/docs-2.0/4.deployment-and-installation/3.upgrade-nebula-graph/upgrade-nebula-graph-to-latest.md similarity index 100% rename from docs/4.deployment-and-installation/3.upgrade-nebula-graph/upgrade-nebula-graph-to-latest.md rename to docs-2.0/4.deployment-and-installation/3.upgrade-nebula-graph/upgrade-nebula-graph-to-latest.md diff --git a/docs/4.deployment-and-installation/4.uninstall-nebula-graph.md b/docs-2.0/4.deployment-and-installation/4.uninstall-nebula-graph.md similarity index 100% rename from docs/4.deployment-and-installation/4.uninstall-nebula-graph.md rename to docs-2.0/4.deployment-and-installation/4.uninstall-nebula-graph.md diff --git a/docs/4.deployment-and-installation/5.zone.md b/docs-2.0/4.deployment-and-installation/5.zone.md similarity index 100% rename from docs/4.deployment-and-installation/5.zone.md rename to docs-2.0/4.deployment-and-installation/5.zone.md diff --git a/docs/4.deployment-and-installation/6.deploy-text-based-index/1.text-based-index-restrictions.md b/docs-2.0/4.deployment-and-installation/6.deploy-text-based-index/1.text-based-index-restrictions.md similarity index 100% rename from docs/4.deployment-and-installation/6.deploy-text-based-index/1.text-based-index-restrictions.md rename to docs-2.0/4.deployment-and-installation/6.deploy-text-based-index/1.text-based-index-restrictions.md diff --git a/docs/4.deployment-and-installation/6.deploy-text-based-index/2.deploy-es.md b/docs-2.0/4.deployment-and-installation/6.deploy-text-based-index/2.deploy-es.md similarity index 100% rename from docs/4.deployment-and-installation/6.deploy-text-based-index/2.deploy-es.md rename to docs-2.0/4.deployment-and-installation/6.deploy-text-based-index/2.deploy-es.md diff --git a/docs/4.deployment-and-installation/6.deploy-text-based-index/3.deploy-listener.md b/docs-2.0/4.deployment-and-installation/6.deploy-text-based-index/3.deploy-listener.md similarity index 100% rename from docs/4.deployment-and-installation/6.deploy-text-based-index/3.deploy-listener.md rename to docs-2.0/4.deployment-and-installation/6.deploy-text-based-index/3.deploy-listener.md diff --git a/docs/4.deployment-and-installation/connect-to-nebula-graph.md b/docs-2.0/4.deployment-and-installation/connect-to-nebula-graph.md similarity index 80% rename from docs/4.deployment-and-installation/connect-to-nebula-graph.md rename to docs-2.0/4.deployment-and-installation/connect-to-nebula-graph.md index 0347af1f4a6..3032eff894e 100644 --- a/docs/4.deployment-and-installation/connect-to-nebula-graph.md +++ b/docs-2.0/4.deployment-and-installation/connect-to-nebula-graph.md @@ -1,4 +1,4 @@ # 连接 Nebula Graph 服务 {% include "/source_connect-to-nebula-graph.md" %} - + diff --git a/docs/4.deployment-and-installation/deploy-license.md b/docs-2.0/4.deployment-and-installation/deploy-license.md similarity index 100% rename from docs/4.deployment-and-installation/deploy-license.md rename to docs-2.0/4.deployment-and-installation/deploy-license.md diff --git a/docs/4.deployment-and-installation/manage-service.md b/docs-2.0/4.deployment-and-installation/manage-service.md similarity index 79% rename from docs/4.deployment-and-installation/manage-service.md rename to docs-2.0/4.deployment-and-installation/manage-service.md index affa7c4c21a..e5dc5ea6f52 100644 --- a/docs/4.deployment-and-installation/manage-service.md +++ b/docs-2.0/4.deployment-and-installation/manage-service.md @@ -1,4 +1,4 @@ # 管理 Nebula Graph 服务 {% include "/source_manage-service.md" %} - + diff --git a/docs/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md similarity index 100% rename from docs/4.deployment-and-installation/standalone-deployment.md rename to docs-2.0/4.deployment-and-installation/standalone-deployment.md diff --git a/docs/4.deployment-and-installation/zone1.png b/docs-2.0/4.deployment-and-installation/zone1.png similarity index 100% rename from docs/4.deployment-and-installation/zone1.png rename to docs-2.0/4.deployment-and-installation/zone1.png diff --git a/docs/5.configurations-and-logs/1.configurations/1.configurations.md b/docs-2.0/5.configurations-and-logs/1.configurations/1.configurations.md similarity index 100% rename from docs/5.configurations-and-logs/1.configurations/1.configurations.md rename to docs-2.0/5.configurations-and-logs/1.configurations/1.configurations.md diff --git a/docs/5.configurations-and-logs/1.configurations/2.meta-config.md b/docs-2.0/5.configurations-and-logs/1.configurations/2.meta-config.md similarity index 100% rename from docs/5.configurations-and-logs/1.configurations/2.meta-config.md rename to docs-2.0/5.configurations-and-logs/1.configurations/2.meta-config.md diff --git a/docs/5.configurations-and-logs/1.configurations/3.graph-config.md b/docs-2.0/5.configurations-and-logs/1.configurations/3.graph-config.md similarity index 100% rename from docs/5.configurations-and-logs/1.configurations/3.graph-config.md rename to docs-2.0/5.configurations-and-logs/1.configurations/3.graph-config.md diff --git a/docs/5.configurations-and-logs/1.configurations/4.storage-config.md b/docs-2.0/5.configurations-and-logs/1.configurations/4.storage-config.md similarity index 100% rename from docs/5.configurations-and-logs/1.configurations/4.storage-config.md rename to docs-2.0/5.configurations-and-logs/1.configurations/4.storage-config.md diff --git a/docs/5.configurations-and-logs/1.configurations/6.kernel-config.md b/docs-2.0/5.configurations-and-logs/1.configurations/6.kernel-config.md similarity index 100% rename from docs/5.configurations-and-logs/1.configurations/6.kernel-config.md rename to docs-2.0/5.configurations-and-logs/1.configurations/6.kernel-config.md diff --git a/docs/5.configurations-and-logs/2.log-management/logs.md b/docs-2.0/5.configurations-and-logs/2.log-management/logs.md similarity index 100% rename from docs/5.configurations-and-logs/2.log-management/logs.md rename to docs-2.0/5.configurations-and-logs/2.log-management/logs.md diff --git a/docs/6.monitor-and-metrics/1.query-performance-metrics.md b/docs-2.0/6.monitor-and-metrics/1.query-performance-metrics.md similarity index 100% rename from docs/6.monitor-and-metrics/1.query-performance-metrics.md rename to docs-2.0/6.monitor-and-metrics/1.query-performance-metrics.md diff --git a/docs/6.monitor-and-metrics/2.rocksdb-statistics.md b/docs-2.0/6.monitor-and-metrics/2.rocksdb-statistics.md similarity index 100% rename from docs/6.monitor-and-metrics/2.rocksdb-statistics.md rename to docs-2.0/6.monitor-and-metrics/2.rocksdb-statistics.md diff --git a/docs/7.data-security/1.authentication/1.authentication.md b/docs-2.0/7.data-security/1.authentication/1.authentication.md similarity index 100% rename from docs/7.data-security/1.authentication/1.authentication.md rename to docs-2.0/7.data-security/1.authentication/1.authentication.md diff --git a/docs/7.data-security/1.authentication/2.management-user.md b/docs-2.0/7.data-security/1.authentication/2.management-user.md similarity index 100% rename from docs/7.data-security/1.authentication/2.management-user.md rename to docs-2.0/7.data-security/1.authentication/2.management-user.md diff --git a/docs/7.data-security/1.authentication/3.role-list.md b/docs-2.0/7.data-security/1.authentication/3.role-list.md similarity index 100% rename from docs/7.data-security/1.authentication/3.role-list.md rename to docs-2.0/7.data-security/1.authentication/3.role-list.md diff --git a/docs/7.data-security/1.authentication/4.ldap.md b/docs-2.0/7.data-security/1.authentication/4.ldap.md similarity index 100% rename from docs/7.data-security/1.authentication/4.ldap.md rename to docs-2.0/7.data-security/1.authentication/4.ldap.md diff --git a/docs/7.data-security/2.backup-restore/1.what-is-br.md b/docs-2.0/7.data-security/2.backup-restore/1.what-is-br.md similarity index 100% rename from docs/7.data-security/2.backup-restore/1.what-is-br.md rename to docs-2.0/7.data-security/2.backup-restore/1.what-is-br.md diff --git a/docs/7.data-security/2.backup-restore/2.compile-br.md b/docs-2.0/7.data-security/2.backup-restore/2.compile-br.md similarity index 100% rename from docs/7.data-security/2.backup-restore/2.compile-br.md rename to docs-2.0/7.data-security/2.backup-restore/2.compile-br.md diff --git a/docs/7.data-security/2.backup-restore/3.br-backup-data.md b/docs-2.0/7.data-security/2.backup-restore/3.br-backup-data.md similarity index 100% rename from docs/7.data-security/2.backup-restore/3.br-backup-data.md rename to docs-2.0/7.data-security/2.backup-restore/3.br-backup-data.md diff --git a/docs/7.data-security/2.backup-restore/4.br-restore-data.md b/docs-2.0/7.data-security/2.backup-restore/4.br-restore-data.md similarity index 100% rename from docs/7.data-security/2.backup-restore/4.br-restore-data.md rename to docs-2.0/7.data-security/2.backup-restore/4.br-restore-data.md diff --git a/docs/7.data-security/3.manage-snapshot.md b/docs-2.0/7.data-security/3.manage-snapshot.md similarity index 100% rename from docs/7.data-security/3.manage-snapshot.md rename to docs-2.0/7.data-security/3.manage-snapshot.md diff --git a/docs/7.data-security/4.ssl.md b/docs-2.0/7.data-security/4.ssl.md similarity index 100% rename from docs/7.data-security/4.ssl.md rename to docs-2.0/7.data-security/4.ssl.md diff --git a/docs/8.service-tuning/2.graph-modeling.md b/docs-2.0/8.service-tuning/2.graph-modeling.md similarity index 100% rename from docs/8.service-tuning/2.graph-modeling.md rename to docs-2.0/8.service-tuning/2.graph-modeling.md diff --git a/docs/8.service-tuning/3.system-design.md b/docs-2.0/8.service-tuning/3.system-design.md similarity index 100% rename from docs/8.service-tuning/3.system-design.md rename to docs-2.0/8.service-tuning/3.system-design.md diff --git a/docs/8.service-tuning/4.plan.md b/docs-2.0/8.service-tuning/4.plan.md similarity index 100% rename from docs/8.service-tuning/4.plan.md rename to docs-2.0/8.service-tuning/4.plan.md diff --git a/docs/8.service-tuning/compaction.md b/docs-2.0/8.service-tuning/compaction.md similarity index 100% rename from docs/8.service-tuning/compaction.md rename to docs-2.0/8.service-tuning/compaction.md diff --git a/docs/8.service-tuning/load-balance.md b/docs-2.0/8.service-tuning/load-balance.md similarity index 100% rename from docs/8.service-tuning/load-balance.md rename to docs-2.0/8.service-tuning/load-balance.md diff --git a/docs/8.service-tuning/loop-property.png b/docs-2.0/8.service-tuning/loop-property.png similarity index 100% rename from docs/8.service-tuning/loop-property.png rename to docs-2.0/8.service-tuning/loop-property.png diff --git a/docs/8.service-tuning/practice.md b/docs-2.0/8.service-tuning/practice.md similarity index 100% rename from docs/8.service-tuning/practice.md rename to docs-2.0/8.service-tuning/practice.md diff --git a/docs/8.service-tuning/sequence.png b/docs-2.0/8.service-tuning/sequence.png similarity index 100% rename from docs/8.service-tuning/sequence.png rename to docs-2.0/8.service-tuning/sequence.png diff --git a/docs/8.service-tuning/super-node.md b/docs-2.0/8.service-tuning/super-node.md similarity index 100% rename from docs/8.service-tuning/super-node.md rename to docs-2.0/8.service-tuning/super-node.md diff --git a/docs/CHANGELOG.md b/docs-2.0/CHANGELOG.md similarity index 100% rename from docs/CHANGELOG.md rename to docs-2.0/CHANGELOG.md diff --git a/docs/README.md b/docs-2.0/README.md similarity index 100% rename from docs/README.md rename to docs-2.0/README.md diff --git a/docs/assets/favicon.ico b/docs-2.0/assets/favicon.ico similarity index 100% rename from docs/assets/favicon.ico rename to docs-2.0/assets/favicon.ico diff --git a/docs/assets/images/favicon.ico b/docs-2.0/assets/images/favicon.ico similarity index 100% rename from docs/assets/images/favicon.ico rename to docs-2.0/assets/images/favicon.ico diff --git a/docs/css/version-select.css b/docs-2.0/css/version-select.css similarity index 100% rename from docs/css/version-select.css rename to docs-2.0/css/version-select.css diff --git "a/docs/icon/\345\205\274\345\256\271compatibility.svg" "b/docs-2.0/icon/\345\205\274\345\256\271compatibility.svg" similarity index 100% rename from "docs/icon/\345\205\274\345\256\271compatibility.svg" rename to "docs-2.0/icon/\345\205\274\345\256\271compatibility.svg" diff --git "a/docs/icon/\346\224\276\345\244\247\351\225\234note.svg" "b/docs-2.0/icon/\346\224\276\345\244\247\351\225\234note.svg" similarity index 100% rename from "docs/icon/\346\224\276\345\244\247\351\225\234note.svg" rename to "docs-2.0/icon/\346\224\276\345\244\247\351\225\234note.svg" diff --git "a/docs/icon/\347\202\270\345\274\271danger.svg" "b/docs-2.0/icon/\347\202\270\345\274\271danger.svg" similarity index 100% rename from "docs/icon/\347\202\270\345\274\271danger.svg" rename to "docs-2.0/icon/\347\202\270\345\274\271danger.svg" diff --git "a/docs/icon/\350\234\227\347\211\233snail.svg" "b/docs-2.0/icon/\350\234\227\347\211\233snail.svg" similarity index 100% rename from "docs/icon/\350\234\227\347\211\233snail.svg" rename to "docs-2.0/icon/\350\234\227\347\211\233snail.svg" diff --git "a/docs/icon/\350\235\216\345\255\220caution.svg" "b/docs-2.0/icon/\350\235\216\345\255\220caution.svg" similarity index 100% rename from "docs/icon/\350\235\216\345\255\220caution.svg" rename to "docs-2.0/icon/\350\235\216\345\255\220caution.svg" diff --git "a/docs/icon/\351\227\256\345\217\267\350\204\270question.svg" "b/docs-2.0/icon/\351\227\256\345\217\267\350\204\270question.svg" similarity index 100% rename from "docs/icon/\351\227\256\345\217\267\350\204\270question.svg" rename to "docs-2.0/icon/\351\227\256\345\217\267\350\204\270question.svg" diff --git a/docs/images/Circuits1.png b/docs-2.0/images/Circuits1.png similarity index 100% rename from docs/images/Circuits1.png rename to docs-2.0/images/Circuits1.png diff --git a/docs/images/path1.png b/docs-2.0/images/path1.png similarity index 100% rename from docs/images/path1.png rename to docs-2.0/images/path1.png diff --git a/docs/images/write-choice.png b/docs-2.0/images/write-choice.png similarity index 100% rename from docs/images/write-choice.png rename to docs-2.0/images/write-choice.png diff --git a/docs/js/config.js b/docs-2.0/js/config.js similarity index 100% rename from docs/js/config.js rename to docs-2.0/js/config.js diff --git a/docs/js/init.js b/docs-2.0/js/init.js similarity index 100% rename from docs/js/init.js rename to docs-2.0/js/init.js diff --git a/docs/js/jquery.js b/docs-2.0/js/jquery.js similarity index 100% rename from docs/js/jquery.js rename to docs-2.0/js/jquery.js diff --git a/docs/js/version-select.js b/docs-2.0/js/version-select.js similarity index 100% rename from docs/js/version-select.js rename to docs-2.0/js/version-select.js diff --git a/docs/nebula-algorithm.md b/docs-2.0/nebula-algorithm.md similarity index 100% rename from docs/nebula-algorithm.md rename to docs-2.0/nebula-algorithm.md diff --git a/docs/nebula-bench.md b/docs-2.0/nebula-bench.md similarity index 100% rename from docs/nebula-bench.md rename to docs-2.0/nebula-bench.md diff --git a/docs/nebula-cloud/1.what-is-cloud.md b/docs-2.0/nebula-cloud/1.what-is-cloud.md similarity index 100% rename from docs/nebula-cloud/1.what-is-cloud.md rename to docs-2.0/nebula-cloud/1.what-is-cloud.md diff --git a/docs/nebula-cloud/2.how-to-create-subsciption.md b/docs-2.0/nebula-cloud/2.how-to-create-subsciption.md similarity index 100% rename from docs/nebula-cloud/2.how-to-create-subsciption.md rename to docs-2.0/nebula-cloud/2.how-to-create-subsciption.md diff --git a/docs/nebula-cloud/3.how-to-set-solution.md b/docs-2.0/nebula-cloud/3.how-to-set-solution.md similarity index 100% rename from docs/nebula-cloud/3.how-to-set-solution.md rename to docs-2.0/nebula-cloud/3.how-to-set-solution.md diff --git a/docs/nebula-cloud/4.user-role-description.md b/docs-2.0/nebula-cloud/4.user-role-description.md similarity index 100% rename from docs/nebula-cloud/4.user-role-description.md rename to docs-2.0/nebula-cloud/4.user-role-description.md diff --git a/docs/nebula-cloud/5.solution/5.0.introduce-solution.md b/docs-2.0/nebula-cloud/5.solution/5.0.introduce-solution.md similarity index 100% rename from docs/nebula-cloud/5.solution/5.0.introduce-solution.md rename to docs-2.0/nebula-cloud/5.solution/5.0.introduce-solution.md diff --git a/docs/nebula-cloud/5.solution/5.1.supporting-application.md b/docs-2.0/nebula-cloud/5.solution/5.1.supporting-application.md similarity index 100% rename from docs/nebula-cloud/5.solution/5.1.supporting-application.md rename to docs-2.0/nebula-cloud/5.solution/5.1.supporting-application.md diff --git a/docs/nebula-cloud/5.solution/5.2.connection-configuration-and-use.md b/docs-2.0/nebula-cloud/5.solution/5.2.connection-configuration-and-use.md similarity index 100% rename from docs/nebula-cloud/5.solution/5.2.connection-configuration-and-use.md rename to docs-2.0/nebula-cloud/5.solution/5.2.connection-configuration-and-use.md diff --git a/docs/nebula-cloud/5.solution/5.3.role-and-authority-management.md b/docs-2.0/nebula-cloud/5.solution/5.3.role-and-authority-management.md similarity index 100% rename from docs/nebula-cloud/5.solution/5.3.role-and-authority-management.md rename to docs-2.0/nebula-cloud/5.solution/5.3.role-and-authority-management.md diff --git a/docs/nebula-cloud/6.pricing.md b/docs-2.0/nebula-cloud/6.pricing.md similarity index 100% rename from docs/nebula-cloud/6.pricing.md rename to docs-2.0/nebula-cloud/6.pricing.md diff --git a/docs/nebula-cloud/7.terms-and-conditions.md b/docs-2.0/nebula-cloud/7.terms-and-conditions.md similarity index 100% rename from docs/nebula-cloud/7.terms-and-conditions.md rename to docs-2.0/nebula-cloud/7.terms-and-conditions.md diff --git a/docs/nebula-cloud/8.privacy-policy.md b/docs-2.0/nebula-cloud/8.privacy-policy.md similarity index 100% rename from docs/nebula-cloud/8.privacy-policy.md rename to docs-2.0/nebula-cloud/8.privacy-policy.md diff --git a/docs/nebula-cloud/figs/copy.png b/docs-2.0/nebula-cloud/figs/copy.png similarity index 100% rename from docs/nebula-cloud/figs/copy.png rename to docs-2.0/nebula-cloud/figs/copy.png diff --git a/docs/nebula-cloud/figs/edit.png b/docs-2.0/nebula-cloud/figs/edit.png similarity index 100% rename from docs/nebula-cloud/figs/edit.png rename to docs-2.0/nebula-cloud/figs/edit.png diff --git a/docs/nebula-console.md b/docs-2.0/nebula-console.md similarity index 100% rename from docs/nebula-console.md rename to docs-2.0/nebula-console.md diff --git a/docs/nebula-dashboard-ent/1.what-is-dashboard-ent.md b/docs-2.0/nebula-dashboard-ent/1.what-is-dashboard-ent.md similarity index 100% rename from docs/nebula-dashboard-ent/1.what-is-dashboard-ent.md rename to docs-2.0/nebula-dashboard-ent/1.what-is-dashboard-ent.md diff --git a/docs/nebula-dashboard-ent/10.tasks.md b/docs-2.0/nebula-dashboard-ent/10.tasks.md similarity index 100% rename from docs/nebula-dashboard-ent/10.tasks.md rename to docs-2.0/nebula-dashboard-ent/10.tasks.md diff --git a/docs/nebula-dashboard-ent/2.deploy-connect-dashboard-ent.md b/docs-2.0/nebula-dashboard-ent/2.deploy-connect-dashboard-ent.md similarity index 100% rename from docs/nebula-dashboard-ent/2.deploy-connect-dashboard-ent.md rename to docs-2.0/nebula-dashboard-ent/2.deploy-connect-dashboard-ent.md diff --git a/docs/nebula-dashboard-ent/3.create-import-dashboard/1.create-cluster.md b/docs-2.0/nebula-dashboard-ent/3.create-import-dashboard/1.create-cluster.md similarity index 100% rename from docs/nebula-dashboard-ent/3.create-import-dashboard/1.create-cluster.md rename to docs-2.0/nebula-dashboard-ent/3.create-import-dashboard/1.create-cluster.md diff --git a/docs/nebula-dashboard-ent/3.create-import-dashboard/2.import-cluster.md b/docs-2.0/nebula-dashboard-ent/3.create-import-dashboard/2.import-cluster.md similarity index 100% rename from docs/nebula-dashboard-ent/3.create-import-dashboard/2.import-cluster.md rename to docs-2.0/nebula-dashboard-ent/3.create-import-dashboard/2.import-cluster.md diff --git a/docs/nebula-dashboard-ent/4.cluster-operator/1.overview.md b/docs-2.0/nebula-dashboard-ent/4.cluster-operator/1.overview.md similarity index 100% rename from docs/nebula-dashboard-ent/4.cluster-operator/1.overview.md rename to docs-2.0/nebula-dashboard-ent/4.cluster-operator/1.overview.md diff --git a/docs/nebula-dashboard-ent/4.cluster-operator/2.monitor.md b/docs-2.0/nebula-dashboard-ent/4.cluster-operator/2.monitor.md similarity index 100% rename from docs/nebula-dashboard-ent/4.cluster-operator/2.monitor.md rename to docs-2.0/nebula-dashboard-ent/4.cluster-operator/2.monitor.md diff --git a/docs/nebula-dashboard-ent/4.cluster-operator/3.cluster-information.md b/docs-2.0/nebula-dashboard-ent/4.cluster-operator/3.cluster-information.md similarity index 100% rename from docs/nebula-dashboard-ent/4.cluster-operator/3.cluster-information.md rename to docs-2.0/nebula-dashboard-ent/4.cluster-operator/3.cluster-information.md diff --git a/docs/nebula-dashboard-ent/4.cluster-operator/4.manage.md b/docs-2.0/nebula-dashboard-ent/4.cluster-operator/4.manage.md similarity index 100% rename from docs/nebula-dashboard-ent/4.cluster-operator/4.manage.md rename to docs-2.0/nebula-dashboard-ent/4.cluster-operator/4.manage.md diff --git a/docs/nebula-dashboard-ent/4.cluster-operator/5.operation-record.md b/docs-2.0/nebula-dashboard-ent/4.cluster-operator/5.operation-record.md similarity index 100% rename from docs/nebula-dashboard-ent/4.cluster-operator/5.operation-record.md rename to docs-2.0/nebula-dashboard-ent/4.cluster-operator/5.operation-record.md diff --git a/docs/nebula-dashboard-ent/4.cluster-operator/6.settings.md b/docs-2.0/nebula-dashboard-ent/4.cluster-operator/6.settings.md similarity index 100% rename from docs/nebula-dashboard-ent/4.cluster-operator/6.settings.md rename to docs-2.0/nebula-dashboard-ent/4.cluster-operator/6.settings.md diff --git a/docs/nebula-dashboard-ent/5.account-management.md b/docs-2.0/nebula-dashboard-ent/5.account-management.md similarity index 100% rename from docs/nebula-dashboard-ent/5.account-management.md rename to docs-2.0/nebula-dashboard-ent/5.account-management.md diff --git a/docs/nebula-dashboard-ent/6.global-config.md b/docs-2.0/nebula-dashboard-ent/6.global-config.md similarity index 100% rename from docs/nebula-dashboard-ent/6.global-config.md rename to docs-2.0/nebula-dashboard-ent/6.global-config.md diff --git a/docs/nebula-dashboard-ent/7.monitor-parameter.md b/docs-2.0/nebula-dashboard-ent/7.monitor-parameter.md similarity index 100% rename from docs/nebula-dashboard-ent/7.monitor-parameter.md rename to docs-2.0/nebula-dashboard-ent/7.monitor-parameter.md diff --git a/docs/nebula-dashboard-ent/8.faq.md b/docs-2.0/nebula-dashboard-ent/8.faq.md similarity index 100% rename from docs/nebula-dashboard-ent/8.faq.md rename to docs-2.0/nebula-dashboard-ent/8.faq.md diff --git a/docs/nebula-dashboard-ent/9.alerts.md b/docs-2.0/nebula-dashboard-ent/9.alerts.md similarity index 100% rename from docs/nebula-dashboard-ent/9.alerts.md rename to docs-2.0/nebula-dashboard-ent/9.alerts.md diff --git a/docs/nebula-dashboard-ent/figs/Plus.png b/docs-2.0/nebula-dashboard-ent/figs/Plus.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/Plus.png rename to docs-2.0/nebula-dashboard-ent/figs/Plus.png diff --git a/docs/nebula-dashboard-ent/figs/Setup.png b/docs-2.0/nebula-dashboard-ent/figs/Setup.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/Setup.png rename to docs-2.0/nebula-dashboard-ent/figs/Setup.png diff --git a/docs/nebula-dashboard-ent/figs/alert_delete.png b/docs-2.0/nebula-dashboard-ent/figs/alert_delete.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/alert_delete.png rename to docs-2.0/nebula-dashboard-ent/figs/alert_delete.png diff --git a/docs/nebula-dashboard-ent/figs/alert_edit.png b/docs-2.0/nebula-dashboard-ent/figs/alert_edit.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/alert_edit.png rename to docs-2.0/nebula-dashboard-ent/figs/alert_edit.png diff --git a/docs/nebula-dashboard-ent/figs/dashboard-login-cn.png b/docs-2.0/nebula-dashboard-ent/figs/dashboard-login-cn.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/dashboard-login-cn.png rename to docs-2.0/nebula-dashboard-ent/figs/dashboard-login-cn.png diff --git a/docs/nebula-dashboard-ent/figs/ds-003.png b/docs-2.0/nebula-dashboard-ent/figs/ds-003.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/ds-003.png rename to docs-2.0/nebula-dashboard-ent/figs/ds-003.png diff --git a/docs/nebula-dashboard-ent/figs/ds-005.png b/docs-2.0/nebula-dashboard-ent/figs/ds-005.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/ds-005.png rename to docs-2.0/nebula-dashboard-ent/figs/ds-005.png diff --git a/docs/nebula-dashboard-ent/figs/ds-021.png b/docs-2.0/nebula-dashboard-ent/figs/ds-021.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/ds-021.png rename to docs-2.0/nebula-dashboard-ent/figs/ds-021.png diff --git a/docs/nebula-dashboard-ent/figs/ds-024.png b/docs-2.0/nebula-dashboard-ent/figs/ds-024.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/ds-024.png rename to docs-2.0/nebula-dashboard-ent/figs/ds-024.png diff --git a/docs/nebula-dashboard-ent/figs/ds-027.png b/docs-2.0/nebula-dashboard-ent/figs/ds-027.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/ds-027.png rename to docs-2.0/nebula-dashboard-ent/figs/ds-027.png diff --git a/docs/nebula-dashboard-ent/figs/ds-029.png b/docs-2.0/nebula-dashboard-ent/figs/ds-029.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/ds-029.png rename to docs-2.0/nebula-dashboard-ent/figs/ds-029.png diff --git a/docs/nebula-dashboard-ent/figs/ds_roles.png b/docs-2.0/nebula-dashboard-ent/figs/ds_roles.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/ds_roles.png rename to docs-2.0/nebula-dashboard-ent/figs/ds_roles.png diff --git a/docs/nebula-dashboard-ent/figs/nav-dashboard.png b/docs-2.0/nebula-dashboard-ent/figs/nav-dashboard.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/nav-dashboard.png rename to docs-2.0/nebula-dashboard-ent/figs/nav-dashboard.png diff --git a/docs/nebula-dashboard-ent/figs/scaling-ds.png b/docs-2.0/nebula-dashboard-ent/figs/scaling-ds.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/scaling-ds.png rename to docs-2.0/nebula-dashboard-ent/figs/scaling-ds.png diff --git a/docs/nebula-dashboard-ent/figs/tips.png b/docs-2.0/nebula-dashboard-ent/figs/tips.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/tips.png rename to docs-2.0/nebula-dashboard-ent/figs/tips.png diff --git a/docs/nebula-dashboard-ent/figs/watch.png b/docs-2.0/nebula-dashboard-ent/figs/watch.png similarity index 100% rename from docs/nebula-dashboard-ent/figs/watch.png rename to docs-2.0/nebula-dashboard-ent/figs/watch.png diff --git a/docs/nebula-dashboard/1.what-is-dashboard.md b/docs-2.0/nebula-dashboard/1.what-is-dashboard.md similarity index 100% rename from docs/nebula-dashboard/1.what-is-dashboard.md rename to docs-2.0/nebula-dashboard/1.what-is-dashboard.md diff --git a/docs/nebula-dashboard/2.deploy-dashboard.md b/docs-2.0/nebula-dashboard/2.deploy-dashboard.md similarity index 100% rename from docs/nebula-dashboard/2.deploy-dashboard.md rename to docs-2.0/nebula-dashboard/2.deploy-dashboard.md diff --git a/docs/nebula-dashboard/3.connect-dashboard.md b/docs-2.0/nebula-dashboard/3.connect-dashboard.md similarity index 100% rename from docs/nebula-dashboard/3.connect-dashboard.md rename to docs-2.0/nebula-dashboard/3.connect-dashboard.md diff --git a/docs/nebula-dashboard/4.use-dashboard.md b/docs-2.0/nebula-dashboard/4.use-dashboard.md similarity index 100% rename from docs/nebula-dashboard/4.use-dashboard.md rename to docs-2.0/nebula-dashboard/4.use-dashboard.md diff --git a/docs/nebula-dashboard/6.monitor-parameter.md b/docs-2.0/nebula-dashboard/6.monitor-parameter.md similarity index 100% rename from docs/nebula-dashboard/6.monitor-parameter.md rename to docs-2.0/nebula-dashboard/6.monitor-parameter.md diff --git a/docs/nebula-dashboard/eye.png b/docs-2.0/nebula-dashboard/eye.png similarity index 100% rename from docs/nebula-dashboard/eye.png rename to docs-2.0/nebula-dashboard/eye.png diff --git a/docs/nebula-dashboard/login.png b/docs-2.0/nebula-dashboard/login.png similarity index 100% rename from docs/nebula-dashboard/login.png rename to docs-2.0/nebula-dashboard/login.png diff --git a/docs/nebula-dashboard/machine.png b/docs-2.0/nebula-dashboard/machine.png similarity index 100% rename from docs/nebula-dashboard/machine.png rename to docs-2.0/nebula-dashboard/machine.png diff --git a/docs/nebula-dashboard/overview1.png b/docs-2.0/nebula-dashboard/overview1.png similarity index 100% rename from docs/nebula-dashboard/overview1.png rename to docs-2.0/nebula-dashboard/overview1.png diff --git a/docs/nebula-dashboard/service.png b/docs-2.0/nebula-dashboard/service.png similarity index 100% rename from docs/nebula-dashboard/service.png rename to docs-2.0/nebula-dashboard/service.png diff --git a/docs/nebula-exchange/about-exchange/ex-ug-limitations.md b/docs-2.0/nebula-exchange/about-exchange/ex-ug-limitations.md similarity index 100% rename from docs/nebula-exchange/about-exchange/ex-ug-limitations.md rename to docs-2.0/nebula-exchange/about-exchange/ex-ug-limitations.md diff --git a/docs/nebula-exchange/about-exchange/ex-ug-what-is-exchange.md b/docs-2.0/nebula-exchange/about-exchange/ex-ug-what-is-exchange.md similarity index 100% rename from docs/nebula-exchange/about-exchange/ex-ug-what-is-exchange.md rename to docs-2.0/nebula-exchange/about-exchange/ex-ug-what-is-exchange.md diff --git a/docs/nebula-exchange/ex-ug-FAQ.md b/docs-2.0/nebula-exchange/ex-ug-FAQ.md similarity index 100% rename from docs/nebula-exchange/ex-ug-FAQ.md rename to docs-2.0/nebula-exchange/ex-ug-FAQ.md diff --git a/docs/nebula-exchange/ex-ug-compile.md b/docs-2.0/nebula-exchange/ex-ug-compile.md similarity index 100% rename from docs/nebula-exchange/ex-ug-compile.md rename to docs-2.0/nebula-exchange/ex-ug-compile.md diff --git a/docs/nebula-exchange/figs/ex-ug-002.png b/docs-2.0/nebula-exchange/figs/ex-ug-002.png similarity index 100% rename from docs/nebula-exchange/figs/ex-ug-002.png rename to docs-2.0/nebula-exchange/figs/ex-ug-002.png diff --git a/docs/nebula-exchange/figs/ex-ug-003.png b/docs-2.0/nebula-exchange/figs/ex-ug-003.png similarity index 100% rename from docs/nebula-exchange/figs/ex-ug-003.png rename to docs-2.0/nebula-exchange/figs/ex-ug-003.png diff --git a/docs/nebula-exchange/parameter-reference/ex-ug-para-import-command.md b/docs-2.0/nebula-exchange/parameter-reference/ex-ug-para-import-command.md similarity index 100% rename from docs/nebula-exchange/parameter-reference/ex-ug-para-import-command.md rename to docs-2.0/nebula-exchange/parameter-reference/ex-ug-para-import-command.md diff --git a/docs/nebula-exchange/parameter-reference/ex-ug-parameter.md b/docs-2.0/nebula-exchange/parameter-reference/ex-ug-parameter.md similarity index 100% rename from docs/nebula-exchange/parameter-reference/ex-ug-parameter.md rename to docs-2.0/nebula-exchange/parameter-reference/ex-ug-parameter.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-export-from-nebula.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-export-from-nebula.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-export-from-nebula.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-export-from-nebula.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-clickhouse.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-clickhouse.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-clickhouse.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-clickhouse.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-csv.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-csv.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-csv.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-csv.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-hbase.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hbase.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-hbase.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hbase.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-hive.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hive.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-hive.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hive.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-json.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-json.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-json.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-json.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-kafka.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-kafka.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-kafka.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-kafka.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-maxcompute.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-maxcompute.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-maxcompute.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-maxcompute.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-mysql.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-mysql.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-mysql.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-mysql.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-orc.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-orc.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-orc.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-orc.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-parquet.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-parquet.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-parquet.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-parquet.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-pulsar.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-pulsar.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-pulsar.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-pulsar.md diff --git a/docs/nebula-exchange/use-exchange/ex-ug-import-from-sst.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-sst.md similarity index 100% rename from docs/nebula-exchange/use-exchange/ex-ug-import-from-sst.md rename to docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-sst.md diff --git a/docs/nebula-explorer/about-explorer/ex-ug-what-is-explorer.md b/docs-2.0/nebula-explorer/about-explorer/ex-ug-what-is-explorer.md similarity index 100% rename from docs/nebula-explorer/about-explorer/ex-ug-what-is-explorer.md rename to docs-2.0/nebula-explorer/about-explorer/ex-ug-what-is-explorer.md diff --git a/docs/nebula-explorer/deploy-connect/ex-ug-connect.md b/docs-2.0/nebula-explorer/deploy-connect/ex-ug-connect.md similarity index 100% rename from docs/nebula-explorer/deploy-connect/ex-ug-connect.md rename to docs-2.0/nebula-explorer/deploy-connect/ex-ug-connect.md diff --git a/docs/nebula-explorer/deploy-connect/ex-ug-deploy.md b/docs-2.0/nebula-explorer/deploy-connect/ex-ug-deploy.md similarity index 100% rename from docs/nebula-explorer/deploy-connect/ex-ug-deploy.md rename to docs-2.0/nebula-explorer/deploy-connect/ex-ug-deploy.md diff --git a/docs/nebula-explorer/deploy-connect/ex-ug-reset-connection.md b/docs-2.0/nebula-explorer/deploy-connect/ex-ug-reset-connection.md similarity index 100% rename from docs/nebula-explorer/deploy-connect/ex-ug-reset-connection.md rename to docs-2.0/nebula-explorer/deploy-connect/ex-ug-reset-connection.md diff --git a/docs/nebula-explorer/figs/Thumbnail-graphView.png b/docs-2.0/nebula-explorer/figs/Thumbnail-graphView.png similarity index 100% rename from docs/nebula-explorer/figs/Thumbnail-graphView.png rename to docs-2.0/nebula-explorer/figs/Thumbnail-graphView.png diff --git a/docs/nebula-explorer/figs/Thumbnail-sphereView.png b/docs-2.0/nebula-explorer/figs/Thumbnail-sphereView.png similarity index 100% rename from docs/nebula-explorer/figs/Thumbnail-sphereView.png rename to docs-2.0/nebula-explorer/figs/Thumbnail-sphereView.png diff --git a/docs/nebula-explorer/figs/Thumbnail-treeView.png b/docs-2.0/nebula-explorer/figs/Thumbnail-treeView.png similarity index 100% rename from docs/nebula-explorer/figs/Thumbnail-treeView.png rename to docs-2.0/nebula-explorer/figs/Thumbnail-treeView.png diff --git a/docs/nebula-explorer/figs/ex-ug-001.png b/docs-2.0/nebula-explorer/figs/ex-ug-001.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-001.png rename to docs-2.0/nebula-explorer/figs/ex-ug-001.png diff --git a/docs/nebula-explorer/figs/ex-ug-002-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-002-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-002-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-002-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-002.png b/docs-2.0/nebula-explorer/figs/ex-ug-002.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-002.png rename to docs-2.0/nebula-explorer/figs/ex-ug-002.png diff --git a/docs/nebula-explorer/figs/ex-ug-003.png b/docs-2.0/nebula-explorer/figs/ex-ug-003.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-003.png rename to docs-2.0/nebula-explorer/figs/ex-ug-003.png diff --git a/docs/nebula-explorer/figs/ex-ug-004-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-004-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-004-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-004-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-004.png b/docs-2.0/nebula-explorer/figs/ex-ug-004.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-004.png rename to docs-2.0/nebula-explorer/figs/ex-ug-004.png diff --git a/docs/nebula-explorer/figs/ex-ug-005.png b/docs-2.0/nebula-explorer/figs/ex-ug-005.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-005.png rename to docs-2.0/nebula-explorer/figs/ex-ug-005.png diff --git a/docs/nebula-explorer/figs/ex-ug-006.png b/docs-2.0/nebula-explorer/figs/ex-ug-006.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-006.png rename to docs-2.0/nebula-explorer/figs/ex-ug-006.png diff --git a/docs/nebula-explorer/figs/ex-ug-007.png b/docs-2.0/nebula-explorer/figs/ex-ug-007.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-007.png rename to docs-2.0/nebula-explorer/figs/ex-ug-007.png diff --git a/docs/nebula-explorer/figs/ex-ug-008.png b/docs-2.0/nebula-explorer/figs/ex-ug-008.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-008.png rename to docs-2.0/nebula-explorer/figs/ex-ug-008.png diff --git a/docs/nebula-explorer/figs/ex-ug-009-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-009-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-009-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-009-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-009-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-009-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-009-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-009-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-010.png b/docs-2.0/nebula-explorer/figs/ex-ug-010.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-010.png rename to docs-2.0/nebula-explorer/figs/ex-ug-010.png diff --git a/docs/nebula-explorer/figs/ex-ug-011-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-011-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-011-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-011-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-011-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-011-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-011-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-011-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-012-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-012-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-012-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-012-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-012-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-012-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-012-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-012-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-013-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-013-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-013-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-013-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-013-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-013-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-013-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-013-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-014-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-014-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-014-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-014-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-014-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-014-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-014-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-014-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-015-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-015-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-015-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-015-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-015-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-015-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-015-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-015-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-016-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-016-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-016-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-016-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-016-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-016-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-016-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-016-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-017-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-017-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-017-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-017-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-017-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-017-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-017-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-017-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-018-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-018-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-018-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-018-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-018-2.png b/docs-2.0/nebula-explorer/figs/ex-ug-018-2.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-018-2.png rename to docs-2.0/nebula-explorer/figs/ex-ug-018-2.png diff --git a/docs/nebula-explorer/figs/ex-ug-019.png b/docs-2.0/nebula-explorer/figs/ex-ug-019.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-019.png rename to docs-2.0/nebula-explorer/figs/ex-ug-019.png diff --git a/docs/nebula-explorer/figs/ex-ug-020.png b/docs-2.0/nebula-explorer/figs/ex-ug-020.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-020.png rename to docs-2.0/nebula-explorer/figs/ex-ug-020.png diff --git a/docs/nebula-explorer/figs/ex-ug-021.png b/docs-2.0/nebula-explorer/figs/ex-ug-021.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-021.png rename to docs-2.0/nebula-explorer/figs/ex-ug-021.png diff --git a/docs/nebula-explorer/figs/ex-ug-022.png b/docs-2.0/nebula-explorer/figs/ex-ug-022.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-022.png rename to docs-2.0/nebula-explorer/figs/ex-ug-022.png diff --git a/docs/nebula-explorer/figs/ex-ug-023-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-023-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-023-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-023-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-023.png b/docs-2.0/nebula-explorer/figs/ex-ug-023.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-023.png rename to docs-2.0/nebula-explorer/figs/ex-ug-023.png diff --git a/docs/nebula-explorer/figs/ex-ug-024-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-024-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-024-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-024-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-025-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-025-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-025-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-025-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-025.png b/docs-2.0/nebula-explorer/figs/ex-ug-025.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-025.png rename to docs-2.0/nebula-explorer/figs/ex-ug-025.png diff --git a/docs/nebula-explorer/figs/ex-ug-026-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-026-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-026-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-026-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-027-1.png b/docs-2.0/nebula-explorer/figs/ex-ug-027-1.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-027-1.png rename to docs-2.0/nebula-explorer/figs/ex-ug-027-1.png diff --git a/docs/nebula-explorer/figs/ex-ug-028.png b/docs-2.0/nebula-explorer/figs/ex-ug-028.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-028.png rename to docs-2.0/nebula-explorer/figs/ex-ug-028.png diff --git a/docs/nebula-explorer/figs/ex-ug-029.png b/docs-2.0/nebula-explorer/figs/ex-ug-029.png similarity index 100% rename from docs/nebula-explorer/figs/ex-ug-029.png rename to docs-2.0/nebula-explorer/figs/ex-ug-029.png diff --git a/docs/nebula-explorer/figs/explorer.png b/docs-2.0/nebula-explorer/figs/explorer.png similarity index 100% rename from docs/nebula-explorer/figs/explorer.png rename to docs-2.0/nebula-explorer/figs/explorer.png diff --git a/docs/nebula-explorer/figs/nav-Revoke.png b/docs-2.0/nebula-explorer/figs/nav-Revoke.png similarity index 100% rename from docs/nebula-explorer/figs/nav-Revoke.png rename to docs-2.0/nebula-explorer/figs/nav-Revoke.png diff --git a/docs/nebula-explorer/figs/nav-delete.png b/docs-2.0/nebula-explorer/figs/nav-delete.png similarity index 100% rename from docs/nebula-explorer/figs/nav-delete.png rename to docs-2.0/nebula-explorer/figs/nav-delete.png diff --git a/docs/nebula-explorer/figs/nav-deleteReverse.png b/docs-2.0/nebula-explorer/figs/nav-deleteReverse.png similarity index 100% rename from docs/nebula-explorer/figs/nav-deleteReverse.png rename to docs-2.0/nebula-explorer/figs/nav-deleteReverse.png diff --git a/docs/nebula-explorer/figs/nav-filter.png b/docs-2.0/nebula-explorer/figs/nav-filter.png similarity index 100% rename from docs/nebula-explorer/figs/nav-filter.png rename to docs-2.0/nebula-explorer/figs/nav-filter.png diff --git a/docs/nebula-explorer/figs/nav-frameSelect.png b/docs-2.0/nebula-explorer/figs/nav-frameSelect.png similarity index 100% rename from docs/nebula-explorer/figs/nav-frameSelect.png rename to docs-2.0/nebula-explorer/figs/nav-frameSelect.png diff --git a/docs/nebula-explorer/figs/nav-graphSpace.png b/docs-2.0/nebula-explorer/figs/nav-graphSpace.png similarity index 100% rename from docs/nebula-explorer/figs/nav-graphSpace.png rename to docs-2.0/nebula-explorer/figs/nav-graphSpace.png diff --git a/docs/nebula-explorer/figs/nav-help.png b/docs-2.0/nebula-explorer/figs/nav-help.png similarity index 100% rename from docs/nebula-explorer/figs/nav-help.png rename to docs-2.0/nebula-explorer/figs/nav-help.png diff --git a/docs/nebula-explorer/figs/nav-miss.png b/docs-2.0/nebula-explorer/figs/nav-miss.png similarity index 100% rename from docs/nebula-explorer/figs/nav-miss.png rename to docs-2.0/nebula-explorer/figs/nav-miss.png diff --git a/docs/nebula-explorer/figs/nav-missReverse.png b/docs-2.0/nebula-explorer/figs/nav-missReverse.png similarity index 100% rename from docs/nebula-explorer/figs/nav-missReverse.png rename to docs-2.0/nebula-explorer/figs/nav-missReverse.png diff --git a/docs/nebula-explorer/figs/nav-moveCanvas.png b/docs-2.0/nebula-explorer/figs/nav-moveCanvas.png similarity index 100% rename from docs/nebula-explorer/figs/nav-moveCanvas.png rename to docs-2.0/nebula-explorer/figs/nav-moveCanvas.png diff --git a/docs/nebula-explorer/figs/nav-propertyView.png b/docs-2.0/nebula-explorer/figs/nav-propertyView.png similarity index 100% rename from docs/nebula-explorer/figs/nav-propertyView.png rename to docs-2.0/nebula-explorer/figs/nav-propertyView.png diff --git a/docs/nebula-explorer/figs/nav-query.png b/docs-2.0/nebula-explorer/figs/nav-query.png similarity index 100% rename from docs/nebula-explorer/figs/nav-query.png rename to docs-2.0/nebula-explorer/figs/nav-query.png diff --git a/docs/nebula-explorer/figs/nav-setup.png b/docs-2.0/nebula-explorer/figs/nav-setup.png similarity index 100% rename from docs/nebula-explorer/figs/nav-setup.png rename to docs-2.0/nebula-explorer/figs/nav-setup.png diff --git a/docs/nebula-explorer/figs/nav-singleSelect.png b/docs-2.0/nebula-explorer/figs/nav-singleSelect.png similarity index 100% rename from docs/nebula-explorer/figs/nav-singleSelect.png rename to docs-2.0/nebula-explorer/figs/nav-singleSelect.png diff --git a/docs/nebula-explorer/figs/rightclickmenu-commonNeighbor.png b/docs-2.0/nebula-explorer/figs/rightclickmenu-commonNeighbor.png similarity index 100% rename from docs/nebula-explorer/figs/rightclickmenu-commonNeighbor.png rename to docs-2.0/nebula-explorer/figs/rightclickmenu-commonNeighbor.png diff --git a/docs/nebula-explorer/figs/rightclickmenu-expand.png b/docs-2.0/nebula-explorer/figs/rightclickmenu-expand.png similarity index 100% rename from docs/nebula-explorer/figs/rightclickmenu-expand.png rename to docs-2.0/nebula-explorer/figs/rightclickmenu-expand.png diff --git a/docs/nebula-explorer/figs/rightclickmenu-findPath.png b/docs-2.0/nebula-explorer/figs/rightclickmenu-findPath.png similarity index 100% rename from docs/nebula-explorer/figs/rightclickmenu-findPath.png rename to docs-2.0/nebula-explorer/figs/rightclickmenu-findPath.png diff --git a/docs/nebula-explorer/figs/sidebar-unfold.png b/docs-2.0/nebula-explorer/figs/sidebar-unfold.png similarity index 100% rename from docs/nebula-explorer/figs/sidebar-unfold.png rename to docs-2.0/nebula-explorer/figs/sidebar-unfold.png diff --git a/docs/nebula-explorer/operation-guide/ex-ug-canvas.md b/docs-2.0/nebula-explorer/operation-guide/ex-ug-canvas.md similarity index 100% rename from docs/nebula-explorer/operation-guide/ex-ug-canvas.md rename to docs-2.0/nebula-explorer/operation-guide/ex-ug-canvas.md diff --git a/docs/nebula-explorer/operation-guide/ex-ug-graph-exploration.md b/docs-2.0/nebula-explorer/operation-guide/ex-ug-graph-exploration.md similarity index 100% rename from docs/nebula-explorer/operation-guide/ex-ug-graph-exploration.md rename to docs-2.0/nebula-explorer/operation-guide/ex-ug-graph-exploration.md diff --git a/docs/nebula-explorer/operation-guide/ex-ug-page-overview.md b/docs-2.0/nebula-explorer/operation-guide/ex-ug-page-overview.md similarity index 100% rename from docs/nebula-explorer/operation-guide/ex-ug-page-overview.md rename to docs-2.0/nebula-explorer/operation-guide/ex-ug-page-overview.md diff --git a/docs/nebula-explorer/operation-guide/ex-ug-query-exploration.md b/docs-2.0/nebula-explorer/operation-guide/ex-ug-query-exploration.md similarity index 100% rename from docs/nebula-explorer/operation-guide/ex-ug-query-exploration.md rename to docs-2.0/nebula-explorer/operation-guide/ex-ug-query-exploration.md diff --git a/docs/nebula-explorer/operation-guide/ex-ug-relationship-list.md b/docs-2.0/nebula-explorer/operation-guide/ex-ug-relationship-list.md similarity index 100% rename from docs/nebula-explorer/operation-guide/ex-ug-relationship-list.md rename to docs-2.0/nebula-explorer/operation-guide/ex-ug-relationship-list.md diff --git a/docs/nebula-explorer/operation-guide/ex-ug-shortcuts.md b/docs-2.0/nebula-explorer/operation-guide/ex-ug-shortcuts.md similarity index 100% rename from docs/nebula-explorer/operation-guide/ex-ug-shortcuts.md rename to docs-2.0/nebula-explorer/operation-guide/ex-ug-shortcuts.md diff --git a/docs/nebula-flink-connector.md b/docs-2.0/nebula-flink-connector.md similarity index 100% rename from docs/nebula-flink-connector.md rename to docs-2.0/nebula-flink-connector.md diff --git a/docs/nebula-flink/nf-ug-compile.md b/docs-2.0/nebula-flink/nf-ug-compile.md similarity index 100% rename from docs/nebula-flink/nf-ug-compile.md rename to docs-2.0/nebula-flink/nf-ug-compile.md diff --git a/docs/nebula-flink/nf-ug-customize-sink.md b/docs-2.0/nebula-flink/nf-ug-customize-sink.md similarity index 100% rename from docs/nebula-flink/nf-ug-customize-sink.md rename to docs-2.0/nebula-flink/nf-ug-customize-sink.md diff --git a/docs/nebula-flink/nf-ug-customize-source.md b/docs-2.0/nebula-flink/nf-ug-customize-source.md similarity index 100% rename from docs/nebula-flink/nf-ug-customize-source.md rename to docs-2.0/nebula-flink/nf-ug-customize-source.md diff --git a/docs/nebula-flink/nf-ug-limitations.md b/docs-2.0/nebula-flink/nf-ug-limitations.md similarity index 100% rename from docs/nebula-flink/nf-ug-limitations.md rename to docs-2.0/nebula-flink/nf-ug-limitations.md diff --git a/docs/nebula-flink/nf-ug-notes.md b/docs-2.0/nebula-flink/nf-ug-notes.md similarity index 100% rename from docs/nebula-flink/nf-ug-notes.md rename to docs-2.0/nebula-flink/nf-ug-notes.md diff --git a/docs/nebula-flink/nf-ug-toc.md b/docs-2.0/nebula-flink/nf-ug-toc.md similarity index 100% rename from docs/nebula-flink/nf-ug-toc.md rename to docs-2.0/nebula-flink/nf-ug-toc.md diff --git a/docs/nebula-flink/nf-ug-what-is-flink-connector.md b/docs-2.0/nebula-flink/nf-ug-what-is-flink-connector.md similarity index 100% rename from docs/nebula-flink/nf-ug-what-is-flink-connector.md rename to docs-2.0/nebula-flink/nf-ug-what-is-flink-connector.md diff --git a/docs/nebula-importer/config-with-header.md b/docs-2.0/nebula-importer/config-with-header.md similarity index 100% rename from docs/nebula-importer/config-with-header.md rename to docs-2.0/nebula-importer/config-with-header.md diff --git a/docs/nebula-importer/config-without-header.md b/docs-2.0/nebula-importer/config-without-header.md similarity index 100% rename from docs/nebula-importer/config-without-header.md rename to docs-2.0/nebula-importer/config-without-header.md diff --git a/docs/nebula-importer/use-importer.md b/docs-2.0/nebula-importer/use-importer.md similarity index 100% rename from docs/nebula-importer/use-importer.md rename to docs-2.0/nebula-importer/use-importer.md diff --git a/docs/nebula-operator/1.introduction-to-nebula-operator.md b/docs-2.0/nebula-operator/1.introduction-to-nebula-operator.md similarity index 100% rename from docs/nebula-operator/1.introduction-to-nebula-operator.md rename to docs-2.0/nebula-operator/1.introduction-to-nebula-operator.md diff --git a/docs/nebula-operator/2.deploy-nebula-operator.md b/docs-2.0/nebula-operator/2.deploy-nebula-operator.md similarity index 100% rename from docs/nebula-operator/2.deploy-nebula-operator.md rename to docs-2.0/nebula-operator/2.deploy-nebula-operator.md diff --git a/docs/nebula-operator/3.deploy-nebula-graph-cluster/3.1create-cluster-with-kubectl.md b/docs-2.0/nebula-operator/3.deploy-nebula-graph-cluster/3.1create-cluster-with-kubectl.md similarity index 100% rename from docs/nebula-operator/3.deploy-nebula-graph-cluster/3.1create-cluster-with-kubectl.md rename to docs-2.0/nebula-operator/3.deploy-nebula-graph-cluster/3.1create-cluster-with-kubectl.md diff --git a/docs/nebula-operator/3.deploy-nebula-graph-cluster/3.2create-cluster-with-helm.md b/docs-2.0/nebula-operator/3.deploy-nebula-graph-cluster/3.2create-cluster-with-helm.md similarity index 100% rename from docs/nebula-operator/3.deploy-nebula-graph-cluster/3.2create-cluster-with-helm.md rename to docs-2.0/nebula-operator/3.deploy-nebula-graph-cluster/3.2create-cluster-with-helm.md diff --git a/docs/nebula-operator/4.connect-to-nebula-graph-service.md b/docs-2.0/nebula-operator/4.connect-to-nebula-graph-service.md similarity index 100% rename from docs/nebula-operator/4.connect-to-nebula-graph-service.md rename to docs-2.0/nebula-operator/4.connect-to-nebula-graph-service.md diff --git a/docs/nebula-operator/5.operator-failover.md b/docs-2.0/nebula-operator/5.operator-failover.md similarity index 100% rename from docs/nebula-operator/5.operator-failover.md rename to docs-2.0/nebula-operator/5.operator-failover.md diff --git a/docs/nebula-operator/6.get-started-with-operator.md b/docs-2.0/nebula-operator/6.get-started-with-operator.md similarity index 100% rename from docs/nebula-operator/6.get-started-with-operator.md rename to docs-2.0/nebula-operator/6.get-started-with-operator.md diff --git a/docs/nebula-operator/7.operator-faq.md b/docs-2.0/nebula-operator/7.operator-faq.md similarity index 100% rename from docs/nebula-operator/7.operator-faq.md rename to docs-2.0/nebula-operator/7.operator-faq.md diff --git a/docs/nebula-operator/8.custom-cluster-configurations/8.1.custom-conf-parameter.md b/docs-2.0/nebula-operator/8.custom-cluster-configurations/8.1.custom-conf-parameter.md similarity index 100% rename from docs/nebula-operator/8.custom-cluster-configurations/8.1.custom-conf-parameter.md rename to docs-2.0/nebula-operator/8.custom-cluster-configurations/8.1.custom-conf-parameter.md diff --git a/docs/nebula-operator/8.custom-cluster-configurations/8.2.pv-reclaim.md b/docs-2.0/nebula-operator/8.custom-cluster-configurations/8.2.pv-reclaim.md similarity index 100% rename from docs/nebula-operator/8.custom-cluster-configurations/8.2.pv-reclaim.md rename to docs-2.0/nebula-operator/8.custom-cluster-configurations/8.2.pv-reclaim.md diff --git a/docs/nebula-operator/8.custom-cluster-configurations/8.3.balance-data-when-scaling-storage.md b/docs-2.0/nebula-operator/8.custom-cluster-configurations/8.3.balance-data-when-scaling-storage.md similarity index 100% rename from docs/nebula-operator/8.custom-cluster-configurations/8.3.balance-data-when-scaling-storage.md rename to docs-2.0/nebula-operator/8.custom-cluster-configurations/8.3.balance-data-when-scaling-storage.md diff --git a/docs/nebula-operator/9.upgrade-nebula-cluster.md b/docs-2.0/nebula-operator/9.upgrade-nebula-cluster.md similarity index 100% rename from docs/nebula-operator/9.upgrade-nebula-cluster.md rename to docs-2.0/nebula-operator/9.upgrade-nebula-cluster.md diff --git a/docs/nebula-plato.md b/docs-2.0/nebula-plato.md similarity index 100% rename from docs/nebula-plato.md rename to docs-2.0/nebula-plato.md diff --git a/docs/nebula-spark-connector.md b/docs-2.0/nebula-spark-connector.md similarity index 100% rename from docs/nebula-spark-connector.md rename to docs-2.0/nebula-spark-connector.md diff --git a/docs/nebula-studio/about-studio/st-ug-check-updates.md b/docs-2.0/nebula-studio/about-studio/st-ug-check-updates.md similarity index 100% rename from docs/nebula-studio/about-studio/st-ug-check-updates.md rename to docs-2.0/nebula-studio/about-studio/st-ug-check-updates.md diff --git a/docs/nebula-studio/about-studio/st-ug-limitations.md b/docs-2.0/nebula-studio/about-studio/st-ug-limitations.md similarity index 100% rename from docs/nebula-studio/about-studio/st-ug-limitations.md rename to docs-2.0/nebula-studio/about-studio/st-ug-limitations.md diff --git a/docs/nebula-studio/about-studio/st-ug-release-note.md b/docs-2.0/nebula-studio/about-studio/st-ug-release-note.md similarity index 100% rename from docs/nebula-studio/about-studio/st-ug-release-note.md rename to docs-2.0/nebula-studio/about-studio/st-ug-release-note.md diff --git a/docs/nebula-studio/about-studio/st-ug-shortcuts.md b/docs-2.0/nebula-studio/about-studio/st-ug-shortcuts.md similarity index 100% rename from docs/nebula-studio/about-studio/st-ug-shortcuts.md rename to docs-2.0/nebula-studio/about-studio/st-ug-shortcuts.md diff --git a/docs/nebula-studio/about-studio/st-ug-terms.md b/docs-2.0/nebula-studio/about-studio/st-ug-terms.md similarity index 100% rename from docs/nebula-studio/about-studio/st-ug-terms.md rename to docs-2.0/nebula-studio/about-studio/st-ug-terms.md diff --git a/docs/nebula-studio/about-studio/st-ug-what-is-graph-studio.md b/docs-2.0/nebula-studio/about-studio/st-ug-what-is-graph-studio.md similarity index 100% rename from docs/nebula-studio/about-studio/st-ug-what-is-graph-studio.md rename to docs-2.0/nebula-studio/about-studio/st-ug-what-is-graph-studio.md diff --git a/docs/nebula-studio/deploy-connect/st-ug-connect.md b/docs-2.0/nebula-studio/deploy-connect/st-ug-connect.md similarity index 100% rename from docs/nebula-studio/deploy-connect/st-ug-connect.md rename to docs-2.0/nebula-studio/deploy-connect/st-ug-connect.md diff --git a/docs/nebula-studio/deploy-connect/st-ug-deploy-by-helm.md b/docs-2.0/nebula-studio/deploy-connect/st-ug-deploy-by-helm.md similarity index 100% rename from docs/nebula-studio/deploy-connect/st-ug-deploy-by-helm.md rename to docs-2.0/nebula-studio/deploy-connect/st-ug-deploy-by-helm.md diff --git a/docs/nebula-studio/deploy-connect/st-ug-deploy.md b/docs-2.0/nebula-studio/deploy-connect/st-ug-deploy.md similarity index 100% rename from docs/nebula-studio/deploy-connect/st-ug-deploy.md rename to docs-2.0/nebula-studio/deploy-connect/st-ug-deploy.md diff --git a/docs/nebula-studio/deploy-connect/st-ug-reset-connection.md b/docs-2.0/nebula-studio/deploy-connect/st-ug-reset-connection.md similarity index 100% rename from docs/nebula-studio/deploy-connect/st-ug-reset-connection.md rename to docs-2.0/nebula-studio/deploy-connect/st-ug-reset-connection.md diff --git a/docs/nebula-studio/figs/st-ug-001-1.png b/docs-2.0/nebula-studio/figs/st-ug-001-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-001-1.png rename to docs-2.0/nebula-studio/figs/st-ug-001-1.png diff --git a/docs/nebula-studio/figs/st-ug-001.png b/docs-2.0/nebula-studio/figs/st-ug-001.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-001.png rename to docs-2.0/nebula-studio/figs/st-ug-001.png diff --git a/docs/nebula-studio/figs/st-ug-002.png b/docs-2.0/nebula-studio/figs/st-ug-002.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-002.png rename to docs-2.0/nebula-studio/figs/st-ug-002.png diff --git a/docs/nebula-studio/figs/st-ug-003-1.png b/docs-2.0/nebula-studio/figs/st-ug-003-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-003-1.png rename to docs-2.0/nebula-studio/figs/st-ug-003-1.png diff --git a/docs/nebula-studio/figs/st-ug-003.png b/docs-2.0/nebula-studio/figs/st-ug-003.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-003.png rename to docs-2.0/nebula-studio/figs/st-ug-003.png diff --git a/docs/nebula-studio/figs/st-ug-004.png b/docs-2.0/nebula-studio/figs/st-ug-004.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-004.png rename to docs-2.0/nebula-studio/figs/st-ug-004.png diff --git a/docs/nebula-studio/figs/st-ug-005-1.png b/docs-2.0/nebula-studio/figs/st-ug-005-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-005-1.png rename to docs-2.0/nebula-studio/figs/st-ug-005-1.png diff --git a/docs/nebula-studio/figs/st-ug-005.png b/docs-2.0/nebula-studio/figs/st-ug-005.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-005.png rename to docs-2.0/nebula-studio/figs/st-ug-005.png diff --git a/docs/nebula-studio/figs/st-ug-006-1.png b/docs-2.0/nebula-studio/figs/st-ug-006-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-006-1.png rename to docs-2.0/nebula-studio/figs/st-ug-006-1.png diff --git a/docs/nebula-studio/figs/st-ug-006.png b/docs-2.0/nebula-studio/figs/st-ug-006.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-006.png rename to docs-2.0/nebula-studio/figs/st-ug-006.png diff --git a/docs/nebula-studio/figs/st-ug-007-1.png b/docs-2.0/nebula-studio/figs/st-ug-007-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-007-1.png rename to docs-2.0/nebula-studio/figs/st-ug-007-1.png diff --git a/docs/nebula-studio/figs/st-ug-007.png b/docs-2.0/nebula-studio/figs/st-ug-007.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-007.png rename to docs-2.0/nebula-studio/figs/st-ug-007.png diff --git a/docs/nebula-studio/figs/st-ug-008.png b/docs-2.0/nebula-studio/figs/st-ug-008.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-008.png rename to docs-2.0/nebula-studio/figs/st-ug-008.png diff --git a/docs/nebula-studio/figs/st-ug-009-1.png b/docs-2.0/nebula-studio/figs/st-ug-009-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-009-1.png rename to docs-2.0/nebula-studio/figs/st-ug-009-1.png diff --git a/docs/nebula-studio/figs/st-ug-009.png b/docs-2.0/nebula-studio/figs/st-ug-009.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-009.png rename to docs-2.0/nebula-studio/figs/st-ug-009.png diff --git a/docs/nebula-studio/figs/st-ug-010-1.png b/docs-2.0/nebula-studio/figs/st-ug-010-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-010-1.png rename to docs-2.0/nebula-studio/figs/st-ug-010-1.png diff --git a/docs/nebula-studio/figs/st-ug-010.png b/docs-2.0/nebula-studio/figs/st-ug-010.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-010.png rename to docs-2.0/nebula-studio/figs/st-ug-010.png diff --git a/docs/nebula-studio/figs/st-ug-011-1.png b/docs-2.0/nebula-studio/figs/st-ug-011-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-011-1.png rename to docs-2.0/nebula-studio/figs/st-ug-011-1.png diff --git a/docs/nebula-studio/figs/st-ug-011.png b/docs-2.0/nebula-studio/figs/st-ug-011.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-011.png rename to docs-2.0/nebula-studio/figs/st-ug-011.png diff --git a/docs/nebula-studio/figs/st-ug-012-1.png b/docs-2.0/nebula-studio/figs/st-ug-012-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-012-1.png rename to docs-2.0/nebula-studio/figs/st-ug-012-1.png diff --git a/docs/nebula-studio/figs/st-ug-012.png b/docs-2.0/nebula-studio/figs/st-ug-012.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-012.png rename to docs-2.0/nebula-studio/figs/st-ug-012.png diff --git a/docs/nebula-studio/figs/st-ug-013-1.png b/docs-2.0/nebula-studio/figs/st-ug-013-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-013-1.png rename to docs-2.0/nebula-studio/figs/st-ug-013-1.png diff --git a/docs/nebula-studio/figs/st-ug-013.png b/docs-2.0/nebula-studio/figs/st-ug-013.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-013.png rename to docs-2.0/nebula-studio/figs/st-ug-013.png diff --git a/docs/nebula-studio/figs/st-ug-014-2.png b/docs-2.0/nebula-studio/figs/st-ug-014-2.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-014-2.png rename to docs-2.0/nebula-studio/figs/st-ug-014-2.png diff --git a/docs/nebula-studio/figs/st-ug-014.png b/docs-2.0/nebula-studio/figs/st-ug-014.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-014.png rename to docs-2.0/nebula-studio/figs/st-ug-014.png diff --git a/docs/nebula-studio/figs/st-ug-015-1.png b/docs-2.0/nebula-studio/figs/st-ug-015-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-015-1.png rename to docs-2.0/nebula-studio/figs/st-ug-015-1.png diff --git a/docs/nebula-studio/figs/st-ug-015-2.png b/docs-2.0/nebula-studio/figs/st-ug-015-2.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-015-2.png rename to docs-2.0/nebula-studio/figs/st-ug-015-2.png diff --git a/docs/nebula-studio/figs/st-ug-016-1.png b/docs-2.0/nebula-studio/figs/st-ug-016-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-016-1.png rename to docs-2.0/nebula-studio/figs/st-ug-016-1.png diff --git a/docs/nebula-studio/figs/st-ug-016-2.png b/docs-2.0/nebula-studio/figs/st-ug-016-2.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-016-2.png rename to docs-2.0/nebula-studio/figs/st-ug-016-2.png diff --git a/docs/nebula-studio/figs/st-ug-016.png b/docs-2.0/nebula-studio/figs/st-ug-016.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-016.png rename to docs-2.0/nebula-studio/figs/st-ug-016.png diff --git a/docs/nebula-studio/figs/st-ug-017.png b/docs-2.0/nebula-studio/figs/st-ug-017.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-017.png rename to docs-2.0/nebula-studio/figs/st-ug-017.png diff --git a/docs/nebula-studio/figs/st-ug-018.png b/docs-2.0/nebula-studio/figs/st-ug-018.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-018.png rename to docs-2.0/nebula-studio/figs/st-ug-018.png diff --git a/docs/nebula-studio/figs/st-ug-019.png b/docs-2.0/nebula-studio/figs/st-ug-019.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-019.png rename to docs-2.0/nebula-studio/figs/st-ug-019.png diff --git a/docs/nebula-studio/figs/st-ug-020.png b/docs-2.0/nebula-studio/figs/st-ug-020.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-020.png rename to docs-2.0/nebula-studio/figs/st-ug-020.png diff --git a/docs/nebula-studio/figs/st-ug-021.png b/docs-2.0/nebula-studio/figs/st-ug-021.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-021.png rename to docs-2.0/nebula-studio/figs/st-ug-021.png diff --git a/docs/nebula-studio/figs/st-ug-022-1.png b/docs-2.0/nebula-studio/figs/st-ug-022-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-022-1.png rename to docs-2.0/nebula-studio/figs/st-ug-022-1.png diff --git a/docs/nebula-studio/figs/st-ug-022-2.png b/docs-2.0/nebula-studio/figs/st-ug-022-2.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-022-2.png rename to docs-2.0/nebula-studio/figs/st-ug-022-2.png diff --git a/docs/nebula-studio/figs/st-ug-022.png b/docs-2.0/nebula-studio/figs/st-ug-022.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-022.png rename to docs-2.0/nebula-studio/figs/st-ug-022.png diff --git a/docs/nebula-studio/figs/st-ug-023-1.png b/docs-2.0/nebula-studio/figs/st-ug-023-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-023-1.png rename to docs-2.0/nebula-studio/figs/st-ug-023-1.png diff --git a/docs/nebula-studio/figs/st-ug-023-2.png b/docs-2.0/nebula-studio/figs/st-ug-023-2.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-023-2.png rename to docs-2.0/nebula-studio/figs/st-ug-023-2.png diff --git a/docs/nebula-studio/figs/st-ug-023.png b/docs-2.0/nebula-studio/figs/st-ug-023.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-023.png rename to docs-2.0/nebula-studio/figs/st-ug-023.png diff --git a/docs/nebula-studio/figs/st-ug-024.png b/docs-2.0/nebula-studio/figs/st-ug-024.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-024.png rename to docs-2.0/nebula-studio/figs/st-ug-024.png diff --git a/docs/nebula-studio/figs/st-ug-025.png b/docs-2.0/nebula-studio/figs/st-ug-025.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-025.png rename to docs-2.0/nebula-studio/figs/st-ug-025.png diff --git a/docs/nebula-studio/figs/st-ug-026.png b/docs-2.0/nebula-studio/figs/st-ug-026.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-026.png rename to docs-2.0/nebula-studio/figs/st-ug-026.png diff --git a/docs/nebula-studio/figs/st-ug-027.png b/docs-2.0/nebula-studio/figs/st-ug-027.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-027.png rename to docs-2.0/nebula-studio/figs/st-ug-027.png diff --git a/docs/nebula-studio/figs/st-ug-028.png b/docs-2.0/nebula-studio/figs/st-ug-028.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-028.png rename to docs-2.0/nebula-studio/figs/st-ug-028.png diff --git a/docs/nebula-studio/figs/st-ug-029.png b/docs-2.0/nebula-studio/figs/st-ug-029.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-029.png rename to docs-2.0/nebula-studio/figs/st-ug-029.png diff --git a/docs/nebula-studio/figs/st-ug-030.png b/docs-2.0/nebula-studio/figs/st-ug-030.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-030.png rename to docs-2.0/nebula-studio/figs/st-ug-030.png diff --git a/docs/nebula-studio/figs/st-ug-031.png b/docs-2.0/nebula-studio/figs/st-ug-031.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-031.png rename to docs-2.0/nebula-studio/figs/st-ug-031.png diff --git a/docs/nebula-studio/figs/st-ug-032.png b/docs-2.0/nebula-studio/figs/st-ug-032.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-032.png rename to docs-2.0/nebula-studio/figs/st-ug-032.png diff --git a/docs/nebula-studio/figs/st-ug-033.png b/docs-2.0/nebula-studio/figs/st-ug-033.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-033.png rename to docs-2.0/nebula-studio/figs/st-ug-033.png diff --git a/docs/nebula-studio/figs/st-ug-034.png b/docs-2.0/nebula-studio/figs/st-ug-034.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-034.png rename to docs-2.0/nebula-studio/figs/st-ug-034.png diff --git a/docs/nebula-studio/figs/st-ug-035.png b/docs-2.0/nebula-studio/figs/st-ug-035.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-035.png rename to docs-2.0/nebula-studio/figs/st-ug-035.png diff --git a/docs/nebula-studio/figs/st-ug-036.png b/docs-2.0/nebula-studio/figs/st-ug-036.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-036.png rename to docs-2.0/nebula-studio/figs/st-ug-036.png diff --git a/docs/nebula-studio/figs/st-ug-038.png b/docs-2.0/nebula-studio/figs/st-ug-038.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-038.png rename to docs-2.0/nebula-studio/figs/st-ug-038.png diff --git a/docs/nebula-studio/figs/st-ug-039.png b/docs-2.0/nebula-studio/figs/st-ug-039.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-039.png rename to docs-2.0/nebula-studio/figs/st-ug-039.png diff --git a/docs/nebula-studio/figs/st-ug-040-1.png b/docs-2.0/nebula-studio/figs/st-ug-040-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-040-1.png rename to docs-2.0/nebula-studio/figs/st-ug-040-1.png diff --git a/docs/nebula-studio/figs/st-ug-040.png b/docs-2.0/nebula-studio/figs/st-ug-040.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-040.png rename to docs-2.0/nebula-studio/figs/st-ug-040.png diff --git a/docs/nebula-studio/figs/st-ug-041-1.png b/docs-2.0/nebula-studio/figs/st-ug-041-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-041-1.png rename to docs-2.0/nebula-studio/figs/st-ug-041-1.png diff --git a/docs/nebula-studio/figs/st-ug-041.png b/docs-2.0/nebula-studio/figs/st-ug-041.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-041.png rename to docs-2.0/nebula-studio/figs/st-ug-041.png diff --git a/docs/nebula-studio/figs/st-ug-042-1.png b/docs-2.0/nebula-studio/figs/st-ug-042-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-042-1.png rename to docs-2.0/nebula-studio/figs/st-ug-042-1.png diff --git a/docs/nebula-studio/figs/st-ug-042.png b/docs-2.0/nebula-studio/figs/st-ug-042.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-042.png rename to docs-2.0/nebula-studio/figs/st-ug-042.png diff --git a/docs/nebula-studio/figs/st-ug-043-1.png b/docs-2.0/nebula-studio/figs/st-ug-043-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-043-1.png rename to docs-2.0/nebula-studio/figs/st-ug-043-1.png diff --git a/docs/nebula-studio/figs/st-ug-043.png b/docs-2.0/nebula-studio/figs/st-ug-043.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-043.png rename to docs-2.0/nebula-studio/figs/st-ug-043.png diff --git a/docs/nebula-studio/figs/st-ug-044-1.png b/docs-2.0/nebula-studio/figs/st-ug-044-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-044-1.png rename to docs-2.0/nebula-studio/figs/st-ug-044-1.png diff --git a/docs/nebula-studio/figs/st-ug-044.png b/docs-2.0/nebula-studio/figs/st-ug-044.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-044.png rename to docs-2.0/nebula-studio/figs/st-ug-044.png diff --git a/docs/nebula-studio/figs/st-ug-045-1.png b/docs-2.0/nebula-studio/figs/st-ug-045-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-045-1.png rename to docs-2.0/nebula-studio/figs/st-ug-045-1.png diff --git a/docs/nebula-studio/figs/st-ug-045.png b/docs-2.0/nebula-studio/figs/st-ug-045.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-045.png rename to docs-2.0/nebula-studio/figs/st-ug-045.png diff --git a/docs/nebula-studio/figs/st-ug-046-1.png b/docs-2.0/nebula-studio/figs/st-ug-046-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-046-1.png rename to docs-2.0/nebula-studio/figs/st-ug-046-1.png diff --git a/docs/nebula-studio/figs/st-ug-046.png b/docs-2.0/nebula-studio/figs/st-ug-046.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-046.png rename to docs-2.0/nebula-studio/figs/st-ug-046.png diff --git a/docs/nebula-studio/figs/st-ug-047.png b/docs-2.0/nebula-studio/figs/st-ug-047.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-047.png rename to docs-2.0/nebula-studio/figs/st-ug-047.png diff --git a/docs/nebula-studio/figs/st-ug-048.png b/docs-2.0/nebula-studio/figs/st-ug-048.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-048.png rename to docs-2.0/nebula-studio/figs/st-ug-048.png diff --git a/docs/nebula-studio/figs/st-ug-054.png b/docs-2.0/nebula-studio/figs/st-ug-054.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-054.png rename to docs-2.0/nebula-studio/figs/st-ug-054.png diff --git a/docs/nebula-studio/figs/st-ug-055-1.png b/docs-2.0/nebula-studio/figs/st-ug-055-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-055-1.png rename to docs-2.0/nebula-studio/figs/st-ug-055-1.png diff --git a/docs/nebula-studio/figs/st-ug-055.png b/docs-2.0/nebula-studio/figs/st-ug-055.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-055.png rename to docs-2.0/nebula-studio/figs/st-ug-055.png diff --git a/docs/nebula-studio/figs/st-ug-056.png b/docs-2.0/nebula-studio/figs/st-ug-056.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-056.png rename to docs-2.0/nebula-studio/figs/st-ug-056.png diff --git a/docs/nebula-studio/figs/st-ug-057.png b/docs-2.0/nebula-studio/figs/st-ug-057.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-057.png rename to docs-2.0/nebula-studio/figs/st-ug-057.png diff --git a/docs/nebula-studio/figs/st-ug-058-1.png b/docs-2.0/nebula-studio/figs/st-ug-058-1.png similarity index 100% rename from docs/nebula-studio/figs/st-ug-058-1.png rename to docs-2.0/nebula-studio/figs/st-ug-058-1.png diff --git a/docs/nebula-studio/manage-schema/st-ug-crud-edge-type.md b/docs-2.0/nebula-studio/manage-schema/st-ug-crud-edge-type.md similarity index 100% rename from docs/nebula-studio/manage-schema/st-ug-crud-edge-type.md rename to docs-2.0/nebula-studio/manage-schema/st-ug-crud-edge-type.md diff --git a/docs/nebula-studio/manage-schema/st-ug-crud-index.md b/docs-2.0/nebula-studio/manage-schema/st-ug-crud-index.md similarity index 100% rename from docs/nebula-studio/manage-schema/st-ug-crud-index.md rename to docs-2.0/nebula-studio/manage-schema/st-ug-crud-index.md diff --git a/docs/nebula-studio/manage-schema/st-ug-crud-space.md b/docs-2.0/nebula-studio/manage-schema/st-ug-crud-space.md similarity index 100% rename from docs/nebula-studio/manage-schema/st-ug-crud-space.md rename to docs-2.0/nebula-studio/manage-schema/st-ug-crud-space.md diff --git a/docs/nebula-studio/manage-schema/st-ug-crud-tag.md b/docs-2.0/nebula-studio/manage-schema/st-ug-crud-tag.md similarity index 100% rename from docs/nebula-studio/manage-schema/st-ug-crud-tag.md rename to docs-2.0/nebula-studio/manage-schema/st-ug-crud-tag.md diff --git a/docs/nebula-studio/quick-start/st-ug-create-schema.md b/docs-2.0/nebula-studio/quick-start/st-ug-create-schema.md similarity index 100% rename from docs/nebula-studio/quick-start/st-ug-create-schema.md rename to docs-2.0/nebula-studio/quick-start/st-ug-create-schema.md diff --git a/docs/nebula-studio/quick-start/st-ug-explore.md b/docs-2.0/nebula-studio/quick-start/st-ug-explore.md similarity index 100% rename from docs/nebula-studio/quick-start/st-ug-explore.md rename to docs-2.0/nebula-studio/quick-start/st-ug-explore.md diff --git a/docs/nebula-studio/quick-start/st-ug-import-data.md b/docs-2.0/nebula-studio/quick-start/st-ug-import-data.md similarity index 100% rename from docs/nebula-studio/quick-start/st-ug-import-data.md rename to docs-2.0/nebula-studio/quick-start/st-ug-import-data.md diff --git a/docs/nebula-studio/quick-start/st-ug-plan-schema.md b/docs-2.0/nebula-studio/quick-start/st-ug-plan-schema.md similarity index 100% rename from docs/nebula-studio/quick-start/st-ug-plan-schema.md rename to docs-2.0/nebula-studio/quick-start/st-ug-plan-schema.md diff --git a/docs/nebula-studio/troubleshooting/st-ug-config-server-errors.md b/docs-2.0/nebula-studio/troubleshooting/st-ug-config-server-errors.md similarity index 100% rename from docs/nebula-studio/troubleshooting/st-ug-config-server-errors.md rename to docs-2.0/nebula-studio/troubleshooting/st-ug-config-server-errors.md diff --git a/docs/nebula-studio/troubleshooting/st-ug-connection-errors.md b/docs-2.0/nebula-studio/troubleshooting/st-ug-connection-errors.md similarity index 100% rename from docs/nebula-studio/troubleshooting/st-ug-connection-errors.md rename to docs-2.0/nebula-studio/troubleshooting/st-ug-connection-errors.md diff --git a/docs/nebula-studio/troubleshooting/st-ug-faq.md b/docs-2.0/nebula-studio/troubleshooting/st-ug-faq.md similarity index 100% rename from docs/nebula-studio/troubleshooting/st-ug-faq.md rename to docs-2.0/nebula-studio/troubleshooting/st-ug-faq.md diff --git a/docs/nebula-studio/use-console/st-ug-console.md b/docs-2.0/nebula-studio/use-console/st-ug-console.md similarity index 100% rename from docs/nebula-studio/use-console/st-ug-console.md rename to docs-2.0/nebula-studio/use-console/st-ug-console.md diff --git a/docs/nebula-studio/use-console/st-ug-open-in-explore.md b/docs-2.0/nebula-studio/use-console/st-ug-open-in-explore.md similarity index 100% rename from docs/nebula-studio/use-console/st-ug-open-in-explore.md rename to docs-2.0/nebula-studio/use-console/st-ug-open-in-explore.md diff --git a/docs/nebula-studio/use-console/st-ug-visualize-subgraph.md b/docs-2.0/nebula-studio/use-console/st-ug-visualize-subgraph.md similarity index 100% rename from docs/nebula-studio/use-console/st-ug-visualize-subgraph.md rename to docs-2.0/nebula-studio/use-console/st-ug-visualize-subgraph.md diff --git a/docs/overrides/content.html b/docs-2.0/overrides/content.html similarity index 100% rename from docs/overrides/content.html rename to docs-2.0/overrides/content.html diff --git a/docs/reuse/assets-1.png b/docs-2.0/reuse/assets-1.png similarity index 100% rename from docs/reuse/assets-1.png rename to docs-2.0/reuse/assets-1.png diff --git a/docs/reuse/assets260.png b/docs-2.0/reuse/assets260.png similarity index 100% rename from docs/reuse/assets260.png rename to docs-2.0/reuse/assets260.png diff --git a/docs/reuse/console-1.png b/docs-2.0/reuse/console-1.png similarity index 100% rename from docs/reuse/console-1.png rename to docs-2.0/reuse/console-1.png diff --git a/docs/reuse/console260.png b/docs-2.0/reuse/console260.png similarity index 100% rename from docs/reuse/console260.png rename to docs-2.0/reuse/console260.png diff --git a/docs/reuse/source_connect-to-nebula-graph.md b/docs-2.0/reuse/source_connect-to-nebula-graph.md similarity index 100% rename from docs/reuse/source_connect-to-nebula-graph.md rename to docs-2.0/reuse/source_connect-to-nebula-graph.md diff --git a/docs/reuse/source_install-nebula-graph-by-rpm-or-deb.md b/docs-2.0/reuse/source_install-nebula-graph-by-rpm-or-deb.md similarity index 94% rename from docs/reuse/source_install-nebula-graph-by-rpm-or-deb.md rename to docs-2.0/reuse/source_install-nebula-graph-by-rpm-or-deb.md index 62b27c84c9e..591385a7158 100644 --- a/docs/reuse/source_install-nebula-graph-by-rpm-or-deb.md +++ b/docs-2.0/reuse/source_install-nebula-graph-by-rpm-or-deb.md @@ -96,7 +96,7 @@ RPM 和 DEB 是 Linux 系统下常见的两种安装包格式,本文介绍如 + 登录 [Nebula Graph Releases](https://github.com/vesoft-inc/nebula/releases) 页面,确认需要的版本,单击** Assets**。 - ![Select a Nebula Graph release version](https://github.com/vesoft-inc/nebula-docs/raw/master/docs/figs/4.deployment-and-installation/2.complie-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb/releases-page.png?raw=true) + ![Select a Nebula Graph release version](https://github.com/vesoft-inc/nebula-docs/raw/master/docs-2.0/figs/4.deployment-and-installation/2.complie-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb/releases-page.png?raw=true) + 在** Assets **区域找到机器运行所需的安装包,下载文件到机器上。 @@ -106,7 +106,7 @@ RPM 和 DEB 是 Linux 系统下常见的两种安装包格式,本文介绍如 + 登录 [Nebula Graph package](https://github.com/vesoft-inc/nebula/actions/workflows/package.yaml) 页面,单击顶部最新的** package**。 - ![Select a Nebula Graph nightly version](https://github.com/vesoft-inc/nebula-docs/raw/master/docs/figs/4.deployment-and-installation/2.complie-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb/nightly-page.png?raw=true) + ![Select a Nebula Graph nightly version](https://github.com/vesoft-inc/nebula-docs/raw/master/docs-2.0/figs/4.deployment-and-installation/2.complie-and-install-nebula-graph/2.install-nebula-graph-by-rpm-or-deb/nightly-page.png?raw=true) + 在** Artifacts **区域找到机器运行所需的安装包,下载文件到机器上。 --> diff --git a/docs/reuse/source_manage-service.md b/docs-2.0/reuse/source_manage-service.md similarity index 100% rename from docs/reuse/source_manage-service.md rename to docs-2.0/reuse/source_manage-service.md diff --git a/docs/spark-connector/figs/sc-ug-001.png b/docs-2.0/spark-connector/figs/sc-ug-001.png similarity index 100% rename from docs/spark-connector/figs/sc-ug-001.png rename to docs-2.0/spark-connector/figs/sc-ug-001.png diff --git a/docs/spark-connector/figs/sc-ug-002.png b/docs-2.0/spark-connector/figs/sc-ug-002.png similarity index 100% rename from docs/spark-connector/figs/sc-ug-002.png rename to docs-2.0/spark-connector/figs/sc-ug-002.png diff --git a/docs/spark-connector/reader/sc-ug-reader-example.md b/docs-2.0/spark-connector/reader/sc-ug-reader-example.md similarity index 100% rename from docs/spark-connector/reader/sc-ug-reader-example.md rename to docs-2.0/spark-connector/reader/sc-ug-reader-example.md diff --git a/docs/spark-connector/reader/sc-ug-what-is-reader.md b/docs-2.0/spark-connector/reader/sc-ug-what-is-reader.md similarity index 100% rename from docs/spark-connector/reader/sc-ug-what-is-reader.md rename to docs-2.0/spark-connector/reader/sc-ug-what-is-reader.md diff --git a/docs/spark-connector/sc-ug-compile.md b/docs-2.0/spark-connector/sc-ug-compile.md similarity index 100% rename from docs/spark-connector/sc-ug-compile.md rename to docs-2.0/spark-connector/sc-ug-compile.md diff --git a/docs/spark-connector/sc-ug-limitations.md b/docs-2.0/spark-connector/sc-ug-limitations.md similarity index 100% rename from docs/spark-connector/sc-ug-limitations.md rename to docs-2.0/spark-connector/sc-ug-limitations.md diff --git a/docs/spark-connector/sc-ug-toc.md b/docs-2.0/spark-connector/sc-ug-toc.md similarity index 100% rename from docs/spark-connector/sc-ug-toc.md rename to docs-2.0/spark-connector/sc-ug-toc.md diff --git a/docs/spark-connector/sc-ug-what-is-spark-connector.md b/docs-2.0/spark-connector/sc-ug-what-is-spark-connector.md similarity index 100% rename from docs/spark-connector/sc-ug-what-is-spark-connector.md rename to docs-2.0/spark-connector/sc-ug-what-is-spark-connector.md diff --git a/docs/spark-connector/writer/sc-ug-what-is-writer.md b/docs-2.0/spark-connector/writer/sc-ug-what-is-writer.md similarity index 100% rename from docs/spark-connector/writer/sc-ug-what-is-writer.md rename to docs-2.0/spark-connector/writer/sc-ug-what-is-writer.md diff --git a/docs/spark-connector/writer/sc-ug-writer-example.md b/docs-2.0/spark-connector/writer/sc-ug-writer-example.md similarity index 100% rename from docs/spark-connector/writer/sc-ug-writer-example.md rename to docs-2.0/spark-connector/writer/sc-ug-writer-example.md diff --git a/docs/stylesheets/extra.css b/docs-2.0/stylesheets/extra.css similarity index 100% rename from docs/stylesheets/extra.css rename to docs-2.0/stylesheets/extra.css diff --git a/docs/stylesheets/logo.css b/docs-2.0/stylesheets/logo.css similarity index 100% rename from docs/stylesheets/logo.css rename to docs-2.0/stylesheets/logo.css diff --git a/docs/stylesheets/note.css b/docs-2.0/stylesheets/note.css similarity index 100% rename from docs/stylesheets/note.css rename to docs-2.0/stylesheets/note.css diff --git a/mkdocs.yml b/mkdocs.yml index 93925674b00..8bde05e10a1 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,8 +2,8 @@ site_name: Nebula Graph Database 手册 site_description: Documentation for Nebula Graph Database site_author: Nebula Graph site_url: https://docs.nebula-graph.com.cn/ -edit_uri: 'edit/master/docs/' -docs_dir: docs +edit_uri: 'edit/master/docs-2.0/' +docs_dir: docs-2.0 # repository repo_name: 'vesoft-inc/nebula-docs-cn' @@ -530,7 +530,7 @@ markdown_extensions: - mdx_truly_sane_lists - pymdownx.superfences - pymdownx.snippets: - base_path: docs/reuse/ + base_path: docs-2.0/reuse/ - pymdownx.arithmatex: generic: true @@ -538,13 +538,13 @@ markdown_extensions: plugins: - search - macros: - include_dir: docs/reuse/ + include_dir: docs-2.0/reuse/ - git-revision-date-localized - exclude: # Exclude files with unix-style wildcards (globs) glob: -# Exclude all files in a directory. The path starts with the directory name in docs, such as `20.appendix/*`. +# Exclude all files in a directory. The path starts with the directory name in docs-2.0, such as `20.appendix/*`. - 7.data-security/2.backup-restore/* - nebula-flink/* - CHANGELOG.md