-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjustfile
More file actions
35 lines (27 loc) · 838 Bytes
/
justfile
File metadata and controls
35 lines (27 loc) · 838 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
build-docs:
cd sphinx && uv run --group docs sphinx-build -b html . build -W
build-landing:
cd landing && npm i --frozen-lockfile && npm run build
mkdir -p build
cp -R ./sphinx/build/. ./build/.
cp -R ./landing/out/. ./build/.
build:
just build-docs
just build-landing
serve: build
npm exec serve build
build-debug:
cd sphinx && uv run --group docs sphinx-build -b html . build -D nb_execution_raise_on_error=0
serve-debug: build-debug
npm exec serve sphinx/build
link-check:
cd sphinx && uv run sphinx-build -b linkcheck . build -W
coverage:
cd sphinx && uv run sphinx-build -W -v -b coverage . build/coverage
cleanup:
rm -rf sphinx/jupyter_execute
rm -rf sphinx/.jupyter_cache
rm -rf sphinx/build
rm -rf sphinx/api/generated
rm -rf landing/out
rm -rf build