Skip to content
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
2 changes: 2 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Oxia - Metadata store and coordination system
Copyright 2023-2025 The Oxia Authors
11 changes: 9 additions & 2 deletions src/app/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default async function RootLayout({ children }) {
}

projectLink="https://github.com/oxia-db/oxia"
// chatLink="https://discord.gg/hEM84NMkRv"
// chatLink="https://cloud-native.slack.com/archives/C09KFHURYF8"
/>
)
const pageMap = await getPageMap()
Expand All @@ -47,7 +47,14 @@ export default async function RootLayout({ children }) {
docsRepositoryBase="https://github.com/oxia-db/oxia-db.github.io/blob/main"
sidebar={{ defaultMenuCollapseLevel: 1 }}
pageMap={pageMap}
footer={<Footer> Copyright © {new Date().getFullYear()} &nbsp; <a target="_blank" href="https://streamnative.io/"> StreamNative</a> </Footer>}
footer={
<Footer>
Copyright © 2023-{new Date().getFullYear()} &nbsp; Oxia a Series of LF Projects, LLC
&mdash;
For website terms of use, trademark policy and other project policies please see
&nbsp; <a href="https://lfprojects.org/policies">https://lfprojects.org/policies</a>.
</Footer>
}
>
{children}
</Layout>
Expand Down
4 changes: 2 additions & 2 deletions src/content/deployment/bare-metal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Suppose you don't have the Kubernetes environment or some container-based system

## Download code from the GitHub

You can check https://github.com/oxia-db/oxia to download the source of StreamNative oxia.
You can check https://github.com/oxia-db/oxia to download the source of Oxia.

## Build from the source code

Change the directory to the root directory of StreamNative oxia project.
Change the directory to the root directory of Oxia project.

```shell
cd <directory>/oxia
Expand Down
2 changes: 1 addition & 1 deletion src/content/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import {Steps, Tabs} from 'nextra/components'
Using docker this can be done with:

```shell
docker run -p 6648:6648 streamnative/oxia:latest oxia standalone
docker run -p 6648:6648 oxia/oxia:latest oxia standalone
```

### Interacting with Oxia
Expand Down