This directory contains the code for the Apache ORC web site, orc.apache.org. The easiest way to build the site is to use docker to use a standard environment.
cd site
git clone [email protected]:apache/orc.git -b asf-site target
docker run -d --name orc-container -p 4000:4000 -v $PWD:/home/orc/site apache/orc-dev:site
Look at the site by navigating to http://0.0.0.0:4000/ .
You'll copy the files from the container to the site/target directory and commit those to the asf-site branch.
docker cp orc-container:/home/orc/site/target .
cd target
- Commit the files and push to Apache.
docker rm -f orc-container