mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-03-20 11:40:32 -05:00
Creates a new CLI for Hatchet! - `hatchet profile [add|remove|list|show|update]` - allows managing multiple profiles, like `local` and `cloud` - `hatchet server [start|stop]` - manages a Hatchet instance locally via docker - `hatchet quickstart` - generates quickstart directory, similar to `create-react-app` - `hatchet worker dev` - creates a filewatcher for a Hatchet instance and automatically injects profile token from a selected profile. Uses a `hatchet.yaml` file in the current directory - `hatchet worker run` - runs a script for triggering a workflow using `hatchet.yaml` - `hatchet tui` - creates the TUI interface
10 lines
111 B
Go
10 lines
111 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hatchet-dev/hatchet/cmd/hatchet-cli/cli"
|
|
)
|
|
|
|
func main() {
|
|
cli.Execute()
|
|
}
|