Skip to content

Commit 19343cb

Browse files
committed
moved around some things, pulled in Ed's changes
1 parent ec85712 commit 19343cb

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

docs/Makefile

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
FLEX_MANUAL_PREFIX ?= flex-manual
22
# AWS_PROFILE is intentionally left undefined by default
33
BRANCH ?= edge
4+
5+
.PHONY: build
6+
build:
7+
uv run mkdocs build -f ./mkdocs.yml
48

5-
.PHONY: setup
6-
setup:
7-
uv sync
9+
.PHONY: deploy
10+
deploy:
11+
python deploy_mkdocs.py $(ENVIRONMENT) --branch $(BRANCH)
12+
13+
.PHONY: serve
14+
serve:
15+
uv run mkdocs serve -f ./mkdocs.yml
816

917
.PHONY: serve-flex-manual
1018
serve-flex-manual:
1119
uv run mkdocs serve -f $(FLEX_MANUAL_PREFIX)/mkdocs.yml
12-
13-
.PHONY: build-flex-manual
14-
build-flex-manual:
15-
uv run mkdocs build -f $(FLEX_MANUAL_PREFIX)/mkdocs.yml
16-
17-
.PHONY: deploy-flex-manual
18-
deploy-flex-manual:
19-
python deploy_flex_manual.py $(ENVIRONMENT) --branch $(BRANCH)
20+
21+
.PHONY: setup
22+
setup:
23+
uv sync
File renamed without changes.

docs/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ dependencies = [
88
"mkdocs>=1.6.1",
99
"mkdocs-autorefs>=1.4.2",
1010
"mkdocs-material>=9.6.14",
11+
"mkdocs-monorepo-plugin>=1.1.2",
1112
"mkdocs-parent-css-plugin",
1213
]
1314

0 commit comments

Comments
 (0)