Skip to content

Commit 8b10ab2

Browse files
committed
docs: serve GSP site on port 8001
1 parent 604901e commit 8b10ab2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
DOCS_PORT ?= 8001
2+
13
help: ## Show this help message
24
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-15s\033[0m %s\n", $$1, $$2}'
35

@@ -83,7 +85,7 @@ mkdocs_build_gallery: ## Build the MkDocs documentation site for the gallery
8385
python ./tools/build_gallery.py
8486

8587
mkdocs_serve: ## Serve the MkDocs documentation locally
86-
uv run mkdocs serve
88+
uv run mkdocs serve --dev-addr 127.0.0.1:$(DOCS_PORT)
8789

8890
mkdocs_build: mkdocs_philosophy_copy ## Build the MkDocs documentation site
8991
uv run mkdocs build

0 commit comments

Comments
 (0)