This is an automated email from the ASF dual-hosted git repository.
jiacai2050 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/horaedb-docs.git
The following commit(s) were added to refs/heads/main by this push:
new e393a13 feat: add download page (#143)
e393a13 is described below
commit e393a136894e83e070c4968d646f0c00b7951095
Author: Jiacai Liu <[email protected]>
AuthorDate: Fri Oct 18 15:00:55 2024 +0800
feat: add download page (#143)
---
.github/CODEOWNERS | 4 +++
content/en/community/_index.md | 1 -
content/en/downloads.md | 75 ++++++++++++++++++++++++++++++++++++++++++
3 files changed, 79 insertions(+), 1 deletion(-)
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
new file mode 100644
index 0000000..b7e4eb7
--- /dev/null
+++ b/.github/CODEOWNERS
@@ -0,0 +1,4 @@
+# Order is important; the last matching pattern takes the most precedence.
+#
https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#example-of-a-codeowners-file
+
+* @jiacai2050
\ No newline at end of file
diff --git a/content/en/community/_index.md b/content/en/community/_index.md
index fa01d87..3950ee6 100644
--- a/content/en/community/_index.md
+++ b/content/en/community/_index.md
@@ -1,6 +1,5 @@
---
title: "Community"
-weight: 1
menu:
main:
weight: 40
diff --git a/content/en/downloads.md b/content/en/downloads.md
new file mode 100644
index 0000000..c5e35bf
--- /dev/null
+++ b/content/en/downloads.md
@@ -0,0 +1,75 @@
+---
+title: "Downloads"
+type: docs
+menu:
+ main:
+ weight: 30
+ pre: <i class='fa-solid fa-download'></i>
+---
+
+Apache HoraeDB is released as source code tarballs with corresponding docker
images for convenience.
+
+# The latest release
+
+The latest release is 2.0.0(2024-05-23), the source code can be downloaded
[here](https://downloads.apache.org/incubator/horaedb/horaedb/v2.0.0/apache-horaedb-incubating-v2.0.0-src.tar.gz).
+
+Verify this release using the
[signatures](https://downloads.apache.org/incubator/horaedb/horaedb/v2.0.0/apache-horaedb-incubating-v2.0.0-src.tar.gz.asc),
[checksums](https://downloads.apache.org/incubator/horaedb/horaedb/v2.0.0/apache-horaedb-incubating-v2.0.0-src.tar.gz.sha512)
by following guides below.
+
+## Docker images
+
+Pre-built binaries are not provided yet, users can [compile from source]({{<
ref "compile_run.md" >}}) or using docker images:
+
+- https://hub.docker.com/r/apache/horaemeta-server
+- https://hub.docker.com/r/apache/horaedb-server
+
+## All archived releases
+
+For older releases, please check the
[archive](https://downloads.apache.org/incubator/horaedb/horaedb/).
+
+# Verify signatures and checksums
+
+It's highly recommended to verify the files that you download.
+
+Fury provides SHA digest and PGP signature files for all the files that we
host on the download site. These files are named after the files they relate to
but have `sha512`, `asc` extensions.
+
+## Verify Checksums
+
+To verify the SHA digests, you need the `tar.gz` and its associated
`tar.gz.sha512` files. An example command:
+
+```bash
+sha512sum -c apache-horaedb-incubating-v2.0.0-src.tar.gz.sha512
+```
+
+It should output something like:
+
+```
+apache-horaedb-incubating-v2.0.0-src.tar.gz: OK
+```
+
+## Verify Signatures
+
+To verify the PGP signatures, you will need to download the [release
KEYS](https://downloads.apache.org/incubator/horaedb/KEYS) first.
+
+Then import the downloaded KEYS:
+
+```bash
+gpg --import KEYS
+```
+
+Then you can verify signature:
+
+```bash
+gpg --verify apache-horaedb-incubating-v2.0.0-src.tar.gz.asc
+```
+
+It should output something like:
+
+```
+gpg: Signature made Wed 12 Jun 2024 11:05:04 AM CST using RSA key ID 08A0BAB4
+gpg: Good signature from "[email protected]"
+gpg: aka "Jiacai Liu <[email protected]>"
+gpg: aka "Jiacai Liu <[email protected]>"
+gpg: WARNING: This key is not certified with a trusted signature!
+gpg: There is no indication that the signature belongs to the owner.
+Primary key fingerprint: 6F73 4AE4 297C 7F62 B605 4F91 D302 6E5C 08A0 BAB4
+```
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]