Skip to content

Commit 59fe66f

Browse files
fix reference to moved cog recipe (#75)
1 parent 69a7527 commit 59fe66f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.just/documentation.just

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,17 @@ fmt:
1212

1313
# Build documentation using Sphinx
1414
[no-cd]
15-
build LOCATION="docs/_build/html": cog
15+
build LOCATION="docs/_build/html":
16+
@just cog
1617
uv run --extra docs sphinx-build docs {{ LOCATION }}
1718

1819
# Serve documentation locally
1920
[no-cd]
20-
serve PORT="8000": cog
21+
serve PORT="8000":
2122
#!/usr/bin/env sh
2223
HOST="localhost"
2324
if [ -f "/.dockerenv" ]; then
2425
HOST="0.0.0.0"
2526
fi
27+
just cog
2628
uv run --extra docs sphinx-autobuild docs docs/_build/html --host "$HOST" --port {{ PORT }}

0 commit comments

Comments
 (0)