There was an error while loading. Please reload this page.
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"; };