From 77ad6b02e6346e166d10a7a4e32782139a982a3c Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Sun, 2 Oct 2022 21:38:40 -0300 Subject: [PATCH] kool: add page (#8675) --- pages/common/kool.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/kool.md diff --git a/pages/common/kool.md b/pages/common/kool.md new file mode 100644 index 0000000000..eaa30d5562 --- /dev/null +++ b/pages/common/kool.md @@ -0,0 +1,28 @@ +# kool + +> Build software development environments from the command-line. +> More information: . + +- Create a project using a specific preset: + +`kool create {{preset}} {{project_name}}` + +- Run a specific script defined in the `kool.yml` file in the current directory: + +`kool run {{script}}` + +- Start/stop services in the current directory: + +`kool {{start|stop}}` + +- Display status of the services in the current directory: + +`kool status` + +- Update to the latest version: + +`kool self-update` + +- Print the completion script for the specified shell: + +`kool completion {{bash|fish|powershell|zsh}}`