Home

Awesome

<h1 align="center"><code>sake</code></h1> <div align="center"> <a href="https://github.com/alajmo/sake/releases"> <img src="https://img.shields.io/github/release-pre/alajmo/sake.svg" alt="version"> </a> <a href="https://github.com/alajmo/sake/actions"> <img src="https://github.com/alajmo/sake/workflows/build/badge.svg" alt="build status"> </a> <a href="https://img.shields.io/badge/license-MIT-green"> <img src="https://img.shields.io/badge/license-MIT-green" alt="license"> </a> <a href="https://goreportcard.com/report/github.com/alajmo/sake"> <img src="https://goreportcard.com/badge/github.com/alajmo/sake" alt="Go Report Card"> </a> <a href="https://pkg.go.dev/github.com/alajmo/sake"> <img src="https://pkg.go.dev/badge/github.com/alajmo/sake.svg" alt="reference"> </a> </div> <br>

sake is a command runner for local and remote hosts. You define servers and tasks in sake.yaml file and then run the tasks on the servers.

This readme is also accessible on sakecli.com.

sake has tons of features:

demo

Interested in managing your git repositories in a similar way? Check out mani!

Table of Contents

Installation

Packaging status

sake is available on Linux and Mac.

Auto-completion is available via sake completion bash|zsh|fish and man page via sake gen.

Building From Source

Requires go 1.19 or above.

  1. Clone the repo
  2. Build and run the executable
    make build && ./dist/sake
    
    # To build for all target platforms run (requires goreleaser CLI)
    make build-all
    

Usage

Create a New Sake Config

Run the following command:

$ sake init

Initialized sake in /tmp/sake
- Created sake.yaml

Following servers were added to sake.yaml

 Server    | Host
-----------+---------
 localhost | 0.0.0.0

Run Some Commands

# List all servers
$ sake list servers

 Server    | Host
-----------+---------
 localhost | 0.0.0.0

# List all tasks
$ sake list tasks

 Task | Description
------+-------------
 ping | Pong

# Run Task
$ sake run ping --all

TASK ping: Pong ************

0.0.0.0 | pong

# Count number of files in each server in parallel
$ sake exec --all --output table --strategy=free 'find . -type f | wc -l'

 Server    | Output
-----------+--------
 localhost | 1

What's Next

Check out the examples page for more advanced examples and the recipes page for a list of useful recipes.

Documentation

License

The MIT License (MIT)

Copyright (c) 2022 Samir Alajmovic