From 8a7e769d93f320909334298c081bc5e5cd75df0d Mon Sep 17 00:00:00 2001 From: Peyman Date: Mon, 11 May 2026 17:09:29 +0000 Subject: [PATCH] feat: add serving instructions to the end of the build script output --- scripts/build_local.sh | 5 +++++ 1 file changed, 5 insertions(+) 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"