Skip to content

Commit

Permalink
chore(dev-tools): add just tail for less verbose docker compose log…
Browse files Browse the repository at this point in the history
… tailing
  • Loading branch information
cpcloud authored and gforsyth committed Oct 19, 2023
1 parent 4d95261 commit 4bd021f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ down *backends:
docker compose rm {{ backends }} --force --stop --volumes
fi
# tail logs for one or more services
tail *services:
docker compose logs --follow {{ services }}

# run the benchmark suite
bench +args='ibis/tests/benchmarks':
pytest --benchmark-only --benchmark-enable --benchmark-autosave {{ args }}
Expand Down Expand Up @@ -136,6 +140,7 @@ decouple +args:
profile +args:
pyinstrument {{ args }}

# generate API documentation
docs-apigen *args:
cd docs && quartodoc interlinks
quartodoc build {{ args }} --config docs/_quarto.yml
Expand All @@ -148,6 +153,7 @@ docs-render:
docs-preview:
quarto preview docs

# deploy docs to netlify
docs-deploy:
quarto publish --no-prompt --no-browser --no-render netlify docs

Expand Down

0 comments on commit 4bd021f

Please sign in to comment.