forked from microsoft/autogen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update base container for website (microsoft#1584)
* Add dependencies for website * Add a shell script to build the website
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |