Drives the Grounds Internal Developer Platform from your terminal.
brew install --cask groundsgg/tap/groundsscoop bucket add groundsgg https://github.com/groundsgg/scoop-bucket
scoop install groundsDownload the latest .deb from releases
and run sudo apt install ./grounds_*.deb.
curl -sSL https://github.com/groundsgg/grounds-cli/releases/latest/download/install.sh | bashgrounds login # OAuth device flow
grounds init # scaffold grounds.yaml
grounds push # first push
grounds cluster status # observe namespace
grounds logs <pushId> --follow # tail logs| Command | What |
|---|---|
grounds login / logout |
Auth via Keycloak device flow |
grounds version [--check] |
Build info and optional release update check |
grounds completion <shell> |
Shell completions |
grounds doctor |
Diagnose env and warn about CLI updates |
grounds init |
Scaffold a grounds.yaml |
grounds cluster up/down/delete/status |
Workspace lifecycle |
grounds push [--target=dev] |
Build + deploy via Gradle plugin |
grounds push retry/list |
Re-run / list pushes |
grounds logs <pushId> [--follow] |
Stream logs |
grounds logs deployment <name> [--follow] |
Stream deployment logs |
~/.config/grounds/config.yaml (XDG-aware). Overridable via flags or env vars (GROUNDS_API_URL, GROUNDS_TOKEN, GROUNDS_CONFIG_DIR).
Run grounds doctor. If something looks off, the report tells you which check failed and how to fix it.
Shell completions work in all four shells (bash/zsh/fish/powershell):
grounds completion bash | sudo tee /etc/bash_completion.d/grounds
grounds completion zsh | sudo tee /usr/share/zsh/site-functions/_grounds
grounds completion fish | sudo tee /usr/share/fish/vendor_completions.d/grounds.fish
grounds completion powershell | Out-File $PROFILE\..\grounds.ps1Apache-2.0.