Skip to content

Commit

Permalink
Add a shell script to build the website
Browse files Browse the repository at this point in the history
  • Loading branch information
gagb committed Feb 7, 2024
1 parent 12c7d00 commit e56b312
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions website/build_website.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#
# 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

0 comments on commit e56b312

Please sign in to comment.