The official website for Apache Teaclave™, generated with the Docusaurus static site generator. This repository contains the source code and configuration for the Teaclave project website, including documentation for Teaclave TrustZone SDK, Teaclave SGX SDK, and related components.
Build the Docker container:
docker build . -t website
Run the container and build the site:
docker run -it --rm -v $(pwd):/app/repo website /bin/bash cd site make build
To deploy the generated site to the staging and production environments:
# Deploy to staging ghp-import --no-history --force site/build/ -b asf-staging git push -f asf-staging # Deploy to production ghp-import --no-history --force site/build/ -b asf-site git push -f asf-site