This CLI is a process management tool. It gives users the ability to launch and observe long running processes.
A good use case is to let it run inside of a docker container. It will give additional insights and management abilities.
This CLI is currently deployed within every deployment at druid.gg.
We publish releases on Github.
You can easlily install druid-cli on Linux by running:
curl -L -o druid "https://github.com/highcard-dev/druid-cli/releases/latest/download/druid" && sudo install -c -m 0755 druid /usr/local/bin
Also consider our installation documentation: https://docs.druid.gg/cli/introduction
The Druid CLI uses a so called Scroll to get instructions on how to launch and handle the process. A scroll can also include files. A Scroll is an OCI Artifact, so it is easy to distribute with registries like Dockerhub.
The way processes are handled is described in the scroll.yaml
and is similar to, how Github Actions work, just with the ability to run indefinetly.
Processes can also depend on each other.
The is a web server included, easily have remote control over the process. There is also websocket support for stdout. TTY is also supported.
There is the ability to extend the druid CLI with Plugins based on Go-Plugins.
Example Plugins:
https://github.com/highcard-dev/druid-cli/tree/master/plugin
Read more at https://docs.druid.gg/cli