File tree Expand file tree Collapse file tree 3 files changed +16
-11
lines changed Expand file tree Collapse file tree 3 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 1
1
FLEX_MANUAL_PREFIX ?= flex-manual
2
2
# AWS_PROFILE is intentionally left undefined by default
3
3
BRANCH ?= edge
4
+
5
+ .PHONY : build
6
+ build :
7
+ uv run mkdocs build -f ./mkdocs.yml
4
8
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
8
16
9
17
.PHONY : serve-flex-manual
10
18
serve-flex-manual :
11
19
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.
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ dependencies = [
8
8
" mkdocs>=1.6.1" ,
9
9
" mkdocs-autorefs>=1.4.2" ,
10
10
" mkdocs-material>=9.6.14" ,
11
+ " mkdocs-monorepo-plugin>=1.1.2" ,
11
12
" mkdocs-parent-css-plugin" ,
12
13
]
13
14
You can’t perform that action at this time.
0 commit comments