This repo deploys automatically to GitHub Pages using Jupyter Book with MyST Markdown as the technical documentation of Open Lambda.
.
├── index.md ← Homepage content (MyST Markdown)
├── _config.yml ← Jupyter Book site settings
├── _toc.yml ← Table of contents (add more pages here)
├── requirements.txt ← Python deps for the build
├── .gitignore
└── .github/
└── workflows/
└── deploy.yml ← GitHub Actions auto-deploy workflow
git clone https://github.com/open-lambda/open-lambda.github.io.git
cd open-lambda.github.io
# Copy all files from this bundle into the repo root, then:
git add .
git commit -m "Add MyST Markdown Jupyter Book site"
git pushpip install -r requirements.txt
jupyter-book build .
# Open in browser:
open _build/html/index.html