| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
The STACKIT CLI is available on all major platforms via mise:
mise u -g github:stackitcloud/stackit-cliThe STACKIT CLI can be installed through the Homebrew package manager.
brew tap stackitcloud/tapbrew install --cask stackitcloud/tap/stackitThe STACKIT CLI is available as a Snap, and can be installed via:
sudo snap install stackit --classicor via the Snap Store for desktop.
The STACKIT CLI can be installed through the APT package manager.
To install the STACKIT CLI package, you will need to have the curl and gnupg packages installed:
sudo apt-get update
sudo apt-get install curl gnupgcurl https://packages.stackit.cloud/keys/key.gpg | sudo gpg --dearmor -o /usr/share/keyrings/stackit.gpgecho "deb [signed-by=/usr/share/keyrings/stackit.gpg] https://packages.stackit.cloud/apt/cli stackit main" | sudo tee -a /etc/apt/sources.list.d/stackit.listsudo apt-get update
sudo apt-get install stackitIf you can't install the stackit package due to an expired key, please go back to step 1 to import the latest public key.
The STACKIT CLI is available as a Nix package, and can be used via:
nix-shell -p stackit-cliThe STACKIT CLI binaries are available via our GitHub releases, you can install them from there using Eget.
# ~/.eget.toml
["stackitcloud/stackit-cli"]
asset_filters=["stackit-cli_", "_linux_amd64.tar.gz"]eget stackitcloud/stackit-cliThe STACKIT CLI can be installed through the DNF/YUM / Zypper package managers.
Requires rpm version 4.15 or newer to support Ed25519 signatures.
$basearch is supported by modern distributions. On older systems that don't expand $basearch, replace it in the baseurl with your architecture explicitly (for example, .../rpm/cli/x86_64 or .../rpm/cli/aarch64).
sudo tee /etc/yum.repos.d/stackit.repo > /dev/null << 'EOF'
[stackit]
name=STACKIT CLI
baseurl=https://packages.stackit.cloud/rpm/cli/$basearch
enabled=1
gpgcheck=1
gpgkey=https://packages.stackit.cloud/keys/key.gpg
EOFsudo dnf install stackitsudo tee /etc/zypp/repos.d/stackit.repo > /dev/null << 'EOF'
[stackit]
name=STACKIT CLI
baseurl=https://packages.stackit.cloud/rpm/cli/$basearch
enabled=1
gpgcheck=1
gpgkey=https://packages.stackit.cloud/keys/key.gpg
EOFsudo zypper install stackitAlternatively, you can install via Homebrew or refer to one of the installation methods below.
We are currently working on distributing the CLI on more package managers for Linux.
The STACKIT CLI can be installed through the Scoop package manager.
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expressionscoop install stackitYou can also get the STACKIT CLI by compiling it from source or downloading a pre-compiled binary.
Clone the repository
Build the application locally by running:
make buildTo use the application from the root of the repository, you can run:
./bin/stackit <GROUP> <SUB-GROUP> <COMMAND> <ARGUMENT> <FLAGS>Skip building and run the Go application directly using:
go run . <GROUP> <SUB-GROUP> <COMMAND> <ARGUMENT> <FLAGS>The STACKIT CLI can be installed through the FreeBSD ports or packages.
To install the port:
cd /usr/ports/sysutils/stackit/ && make install cleanTo add the package, run one of these commands:
pkg install sysutils/stackit
# OR
pkg install stackit| Back | FazBrowse Home | New Git URL |