This directory contains the code for the Apache Hive web site, hive.apache.org. The easiest way to build the site is to use docker to use a standard environment.
docker build -t hive-site .CONTAINER=$(docker run -d -p 4000:4000 hive-site)Look at the site by navigating to http://0.0.0.0:4000/ .
Commit and push the changes to the main branch. The site is automatically deployed from the site directory.
docker stop $CONTAINER