Adding Old Parquet Format Releases with Links (#47)

* Adding Old Parquet Format Releases with Links

* Update Release Locations

* Fixing Links
4 files changed
tree: dc6f27dc9aafc7f009aa5a602c4958741053c92e
  1. .github/
  2. assets/
  3. content/
  4. layouts/
  5. static/
  6. .asf.yaml
  7. .gitignore
  8. .gitmodules
  9. .nvmrc
  10. config.toml
  11. go.mod
  12. go.sum
  13. LICENSE
  14. package.json
  15. README.md
README.md

Parquet Website

This website is built / powered by Hugo, and extended from the Docsy Theme.

The following steps assume that you have hugo installed and working.

Building and Running Locally

Clone this repository to run the website locally:

git clone git@github.com:apache/parquet-site.git
cd parquet-site
git submodule update --init --recursive

To build or update your site’s CSS resources, you also need PostCSS to create the final assets. By default npm installs tools under the directory where you run npm install.

npm install -D autoprefixer
npm install -D postcss-cli
npm install -D postcss

To run this website site locally, run the following in the root of the directory:

hugo server

Website development and deployment

Staging

To make a change to the staging version of the website:

  1. Make a PR against the staging branch in the repository
  2. Once the PR is merged, the Build and Deploy Parquet Site job in the deployment workflow will be run, populating the asf-staging branch on this repo with the necessary files.

Do not directly edit the asf-staging branch of this repo

Production

To make a change to the production version of the website:

  1. Make a PR against the production branch in the repository
  2. Once the PR is merged, the Build and Deploy Parquet Site job in the deployment workflow will be run, populating the asf-site branch on this repo with the necessary files.

Do not directly edit the asf-site branch of this repo