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

feat: add download page #143

Merged
merged 3 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion content/en/community/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: "Community"
weight: 1
menu:
main:
weight: 40
Expand Down
75 changes: 75 additions & 0 deletions content/en/downloads.md
Original file line number Diff line number Diff line change
@@ -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 "jiacai2050@apache.org"
gpg: aka "Jiacai Liu <hello@liujiacai.net>"
gpg: aka "Jiacai Liu <dev@liujiacai.net>"
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
```
Loading