-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (27 loc) · 745 Bytes
/
Makefile
File metadata and controls
37 lines (27 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.PHONY: init-submodules update-submodules docs-install docs-update-deps docs-generate docs-build docs-serve docs-deploy clean
all:
init-submodules:
git submodule update --init
cd pyaurorax && \
git checkout main && \
git pull && \
pip install poetry && \
poetry install
cd ..
update-submodules:
git submodule foreach git pull
docs-install:
pip install -r requirements.txt
docs-update docs-update-deps:
pip install --upgrade -r requirements.txt
docs-generate:
rm -rf docs/code/pyaurorax_api_reference/*
cp -Rfv pyaurorax/docs/generated/* docs/code/pyaurorax_api_reference/.
docs-build:
python -m mkdocs build
dev docs-serve:
python -m mkdocs serve
docs-deploy:
python -m mkdocs gh-deploy --force
clean:
rm -rf site