Installation
The quickest way to install Runbooks is to download the pre-built binaries from the GitHub repo.
Installing from Source
Section titled “Installing from Source”You can also build the binaries yourself:
-
Clone the repository:
Terminal window git clone https://github.com/gruntwork-io/runbooks.gitcd runbooks -
Build the frontend:
Terminal window cd webbun installbun run build -
Build the binary:
Terminal window go build -o runbooks main.go -
Move the binary to your PATH (optional):
Terminal window sudo mv runbooks /usr/local/bin/ -
Enable execute permissions for your binary
Terminal window chmod u+x /usr/local/bin/runbooks
6.. Verify installation:
runbooks
Verifying installation
Section titled “Verifying installation”Once installed, you can verify that runbooks
is working by running:
runbooks version
Now that you have Runbooks installed, let’s write your first runbook!