From 9a3bac690733a09b048946adea484e570ad72a98 Mon Sep 17 00:00:00 2001 From: Bradley Wojcik Date: Wed, 8 Jun 2022 08:48:55 -0400 Subject: [PATCH] just: add page (#8119) --- pages/common/just.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/just.md diff --git a/pages/common/just.md b/pages/common/just.md new file mode 100644 index 000000000..1a776107c --- /dev/null +++ b/pages/common/just.md @@ -0,0 +1,24 @@ +# just + +> Save and run project-specific commands. +> More information: . + +- Run a recipe specified in the justfile: + +`just {{recipe}}` + +- Initialize new justfile in project root: + +`just --init` + +- Edit justfile in the default editor: + +`just -e` + +- List available recipes in the justfile: + +`just -l` + +- Print justfile: + +`just --dump`