Skip to content

Commit

Permalink
enhance validate doc (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
z7658329 committed Jan 3, 2023
1 parent c70d6f6 commit b3fd514
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
16 changes: 16 additions & 0 deletions content/cn/docs/contribution-guidelines/validate-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,22 @@ mvn clean package -Dmaven.test.skip=true -Dcheckstyle.skip=true

1. 文件夹都带有 `incubating`
2. 存在 `LICENSE` + `NOTICE` 文件并且内容正常
3. 服务启动
```bash
# hugegraph-server
bin/start-hugegraph.sh

# hugegraph-loader
bin/hugegraph-loader.sh -f path -g graph -s schema

# hugegraph-hubble
bin/start-hubble.sh

# hugegraph-computer
bin/start-computer.sh -d local -r master

更多参考官网: https://hugegraph.apache.org/cn/docs/quickstart
```

**注:** 如果二进制包里面引入了第三方依赖, 则需要更新 LICENSE, 加入第三方依赖的 LICENSE; 若第三方依赖 LICENSE 是 Apache 2.0, 且对应的项目中包含了 NOTICE, 则还需要更新我们的 NOTICE 文件

Expand Down
17 changes: 16 additions & 1 deletion content/en/docs/contribution-guidelines/validate-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,22 @@ After decompressing `xxx-hugegraph.tar.gz`, perform the following checks:

1. folders with `incubating`
2. `LICENSE` and `NOTICE` file exists and the content is normal
3. Confirm that the signature of each file is normal through the gpg command
3. start server
```bash
# hugegraph-server
bin/start-hugegraph.sh

# hugegraph-loader
bin/hugegraph-loader.sh -f path -g graph -s schema

# hugegraph-hubble
bin/start-hubble.sh

# hugegraph-computer
bin/start-computer.sh -d local -r master

more reference official website: https://hugegraph.apache.org/cn/docs/quickstart
```

**Note:** If a third-party dependency is introduced in the binary package, you need to update the LICENSE and add the third-party dependent LICENSE; if the third-party dependent LICENSE is Apache 2.0, and the corresponding project contains NOTICE, you also need to update Our NOTICE file

Expand Down

0 comments on commit b3fd514

Please sign in to comment.