Apache Teaclave Website

Clone this repo:
  1. 5ecfab0 docs: update contribute|download|release guide by Zhaofeng Chen · 3 days ago master
  2. c71f5c5 sgx: update sgx doc build by Zhaofeng Chen · 3 days ago
  3. 3c320fa docs: update github links by Zhaofeng Chen · 3 days ago
  4. f220277 site: remove incubating DISCLAIMER by Zhaofeng Chen · 2 weeks ago
  5. b03082a site: remove incubating status by Zhaofeng Chen · 2 weeks ago

Apache Teaclave™ Website

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.

Quick Start

Building the Website

  1. Build the Docker container:

    docker build . -t website
    
  2. Run the container and build the site:

    docker run -it --rm -v $(pwd):/app/repo website /bin/bash
    cd site
    make build
    

Deployment

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

Website URLs