From 2d095b19ffb055f54d3af243252d2758f6eca41e Mon Sep 17 00:00:00 2001 From: Dhruv Bhanushali Date: Tue, 29 Aug 2023 19:15:31 +0400 Subject: [PATCH] Update `just` aliases (#2884) --- documentation/general/general_setup.md | 5 +++++ justfile | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/documentation/general/general_setup.md b/documentation/general/general_setup.md index 114b2f93bd9..b25d5e75ea0 100644 --- a/documentation/general/general_setup.md +++ b/documentation/general/general_setup.md @@ -97,6 +97,11 @@ If for some reason, you are unable to install `just`, you can refer to the commands individually in a terminal. It won't be the best user experience, but it will work just the same. +We also recommend setting up +[shell completions](https://github.com/casey/just#shell-completion-scripts) for +`just` to make it faster to find and run recipes. On macOS with the default Z +shell, Homebrew installs completions for `just` by default. + ## Conditional setup A subset of the following requirements will be required depending on the extent diff --git a/justfile b/justfile index f4a315808a9..36b6eb7e11f 100644 --- a/justfile +++ b/justfile @@ -230,7 +230,11 @@ deploy: alias b := build alias d := down -alias l := logs +alias l := lint + +alias L := logs +alias P := precommit +alias I := install # alias for `just api/up` a: