Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

publish 3.2.0-ent docs #1929

Merged
merged 5 commits into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish docs via GitHub Pages
on:
push:
branches:
- master
- v3.2.0

jobs:
deploy:
Expand All @@ -26,7 +26,7 @@ jobs:

- name: mike
run: |
mike deploy master -p --rebase
mike deploy 3.2.0 -p --rebase
mike list

- name: show git branch
Expand All @@ -36,7 +36,7 @@ jobs:
git checkout gh-pages
- name: Compress
run: |
tar -vczf nebula-docs.tar.gz master versions.json *.html
tar -vczf nebula-docs.tar.gz 3.2.0 versions.json *.html

- name: Transfer
# uses: garygrossgarten/github-action-scp@release
Expand All @@ -59,7 +59,7 @@ jobs:
mkdir -p /usr/web/nebula-docs/
tar -xzf /usr/web/nebula-docs.tar.gz -C /usr/web/nebula-docs/
mkdir -p /usr/web/nebula-docs/site/pdf/
cp -f /usr/web/nebula-docs/master/pdf/NebulaGraph-CN.pdf /usr/web/nebula-docs/site/pdf/NebulaGraph-book.pdf
cp -f /usr/web/nebula-docs/3.2.0/pdf/NebulaGraph-CN.pdf /usr/web/nebula-docs/site/pdf/NebulaGraph-book.pdf

# pip3 install --upgrade pip
# pip3 install -r /usr/web/nebula-docs/requirement.txt
Expand Down
65 changes: 1 addition & 64 deletions docs-2.0/README.md
Original file line number Diff line number Diff line change
@@ -1,66 +1,3 @@
# 欢迎阅读 Nebula Graph {{ nebula.release }} 文档

!!! Note "[查看版本发布说明](20.appendix/release-note.md)"

本文档更新时间{{ now().year }}-{{ now().month }}-{{ now().day }},GitHub commit [{{ git.short_commit }}](https://github.com/vesoft-inc/nebula-docs/commits/v{{nebula.release}})。

Nebula Graph 是一款开源的、分布式的、易扩展的原生图数据库,能够承载数千亿个点和数万亿条边的超大规模数据集,并且提供毫秒级查询。

## 快速开始
* [学习路径](20.appendix/learning-path.md)与[获取认证](https://academic.nebula-graph.io/?lang=ZH_CN)
* [什么是 Nebula Graph](1.introduction/1.what-is-nebula-graph.md)
* [快速开始](2.quick-start/1.quick-start-workflow.md)
* [部署要求](4.deployment-and-installation/1.resource-preparations.md)
* [nGQL 命令汇总](2.quick-start/6.cheatsheet-for-ngql-command.md)
* [FAQ](20.appendix/0.FAQ.md)
* [生态工具](20.appendix/6.eco-tool-version.md)

## 其他资料

- [Nebula
Graph 完全指南](https://docs.nebula-graph.com.cn/site/pdf/NebulaGraph-book.pdf)与[摘要版本](https://arxiv.org/abs/2206.07278)
- [发布说明](20.appendix/release-note.md)
- [论坛](https://discuss.nebula-graph.com.cn/)
- [项目主页](https://nebula-graph.com.cn/)
- [系列视频](https://space.bilibili.com/472621355)
- [英文文档](https://docs.nebula-graph.io/)

## 图例说明

<!--
本文有 40+ 个 caution。
本文有 30+ 个 danger。
本文有 80+ 个 compatibility 和兼容性提示。
-->

!!! note

额外的信息或者操作相关的提醒等。

!!! caution

需要严格遵守的注意事项。不遵守 caution 可能导致系统故障、数据丢失、安全问题等。

!!! danger

会引发危险的事项。不遵守 danger 必定会导致系统故障、数据丢失、安全问题等。

!!! performance

性能调优时需要注意的事项。

!!! faq

常见问题。

!!! compatibility

nGQL 与 openCypher 的兼容性或 nGQL 当前版本与历史版本的兼容性。

!!! enterpriseonly

描述社区版和企业版的差异。

## 修改文档中的错误

Nebula Graph 文档以 Markdown 语言编写。单击文档标题右上侧的铅笔图标即可提交修改建议。
!!! caution "企业版 3.2.0 已发布,社区版 3.2.0 及周边生态工具尚未发布,敬请期待!"
Loading