Website sources for Apache Cloudberry™️ (Incubating)

Clone this repo:
  1. 2a45ff0 Fix the uncorrect user:group format by Dianjin Wang · 2 days ago main
  2. ca14d85 doc: add PAX related docs (#275) by TomShawn · 3 days ago
  3. 84e83f0 Add new deployment docs for 2.x by Dianjin Wang · 3 days ago
  4. c64df4b Refactor the installation Docs for Rocky & Ubuntu by Dianjin Wang · 12 days ago
  5. a9cf40b docs: add db objects and query docs by TomShawn · 4 days ago

Apache Cloudberry (Incubating) Website & Documentation

Website Documentation Slack Twitter Follow WeChat Youtube


Website Directory Structure

.
├── LICENSE
├── NOTICE
├── README.md
├── babel.config.js
├── blog
├── docs
├── docusaurus.config.ts
├── global.d.ts
├── i18n
├── package-lock.json
├── package.json
├── scripts
├── sidebars.ts
├── src
├── static
└── tsconfig.json

Notable directories Description:

  1. Blog

    The Blog post files are placed in the blog directory. You need to create one new folder for each new post and add the author information to the blog/authors.yml.

  2. Document

    The latest version of the document is under the docs (en) and /i18n/zh/docusaurus-plugin-content-docs/current/ (zh). directory. Media including images, video can be placed in docs/media folder. You must add the new doc file name to sidebars.js to make it display on the website.

  3. Pictures

    All images are placed in the static/img directory.

Website Building

This website is built using Docusaurus 3, a modern static website generator. If you don't know Docusaurus, please learn more from Docusaurus website.

You can follow these steps to install and build the Apache Cloudberry website in your local environment.

  1. Clone website source
$ git clone https://github.com/apache/cloudberry-site.git
  1. Install dependencies

Before building the website, you need to install dependencies to make sure no errors when building.

$ npm install
  1. Build and run
$ npm run build
$ npm run serve

This command generates static content into the build directory and can be served using any static contents hosting service.

Then you can visit localhost:3000 in the browser.

  1. (Option) If you want to run the local development environment, you can skip Step 3 to run the following command directly:
$ npm run start

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Document Contribution

Our documents are still in construction, welcome to help. If you're interested in document contribution, you can submit the pull request here.

License

Apache License Version 2.0 (see LICENSE & NOTICE).