diff --git a/scripts/build_local.sh b/scripts/build_local.sh index 34d99aa71..d8d2e96f0 100755 --- a/scripts/build_local.sh +++ b/scripts/build_local.sh @@ -132,3 +132,8 @@ echo "Extracting: $EXTRACT_LIST" git archive "$GH_PAGES_BRANCH" $EXTRACT_LIST | tar -x -C "$OUTPUT_DIR" echo "=== Build Complete! ===" +echo "To serve the fully built site (with versioning):" +echo " python3 -m http.server 8000 -d $OUTPUT_DIR" +echo "" +echo "Alternative (faster for live editing current version):" +echo " uv run mkdocs serve"