Skip to content

Commit ce2267e

Browse files
gadenbuieschloerke
andauthored
chore(make): Add make docs and make docs-preview (#1150)
Co-authored-by: Barret Schloerke <[email protected]>
1 parent ccd5d2f commit ce2267e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Makefile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: help clean% check% format% lint test pyright playwright% install% testrail% coverage release
1+
.PHONY: help clean% check% format% docs% lint test pyright playwright% install% testrail% coverage release
22
.DEFAULT_GOAL := help
33

44
define BROWSER_PYSCRIPT
@@ -92,6 +92,14 @@ format-isort:
9292
@echo "-------- Sorting imports with isort --------"
9393
isort .
9494

95+
docs: ## docs: build docs with quartodoc
96+
@echo "-------- Building docs with quartodoc --------"
97+
@cd docs && make quartodoc
98+
99+
docs-preview: ## docs: preview docs in browser
100+
@echo "-------- Previewing docs in browser --------"
101+
@cd docs && make serve
102+
95103
# Default `SUB_FILE` to empty
96104
SUB_FILE:=
97105

0 commit comments

Comments
 (0)