autogen/website/build_website.sh
gagb 68337b9553
Update base container for website (#1584)
* Add dependencies for website

* Add a shell script to build the website
2024-02-08 01:25:43 +00:00

18 lines
368 B
Bash

#
# This script generates documentation using pydoc-markdown and renders the website using Quarto.
#
# Usage: bash build_website.sh
#
# Generate documentation using pydoc-markdown
pydoc-markdown
# Render the website using Quarto
quarto render ./docs
# Process notebooks using a Python script
python ./process_notebooks.py
# Start the website using yarn
yarn start