We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a7527 commit 59fe66fCopy full SHA for 59fe66f
.just/documentation.just
@@ -12,15 +12,17 @@ fmt:
12
13
# Build documentation using Sphinx
14
[no-cd]
15
-build LOCATION="docs/_build/html": cog
+build LOCATION="docs/_build/html":
16
+ @just cog
17
uv run --extra docs sphinx-build docs {{ LOCATION }}
18
19
# Serve documentation locally
20
-serve PORT="8000": cog
21
+serve PORT="8000":
22
#!/usr/bin/env sh
23
HOST="localhost"
24
if [ -f "/.dockerenv" ]; then
25
HOST="0.0.0.0"
26
fi
27
+ just cog
28
uv run --extra docs sphinx-autobuild docs docs/_build/html --host "$HOST" --port {{ PORT }}
0 commit comments