We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can use (R)?ex to manage your local tasks like compiling, bundling, managing services, and much more.
Here is a simple example:
use Rex::Commands::Run; desc "Build App"; task "build", sub { run "make"; }; desc "Run App"; task "run", sub { run "./myapp"; };