Shopware PaaS Native CLI Releases
Run the following command to install the latest version of Shopware PaaS Native CLI:
curl -L https://install.sw-paas-cli.shopware.systems | shTo install a specific version, pass the version as an argument:
curl -L https://install.sw-paas-cli.shopware.systems | sh -s 0.0.30- Download the appropriate binary for your system from the releases page
- Make it executable:
chmod +x sw-paas_<OS>_<ARCH> - Move it to a directory in your PATH:
mv sw-paas_<OS>_<ARCH> /usr/local/bin/sw-paas
The installation script will:
- Download the latest version (or specified version) from GitHub releases
- Install the binary to
~/.sw-paas/bin/sw-paas - Add the installation directory to your PATH (if not already present)
- Support for macOS (Darwin) and Linux on x86_64, arm64, and i386 architectures
SW_PAAS_DIR: Custom installation directory (defaults to~/.sw-paas)
After installation, run:
sw-paas authTo remove Shopware PaaS Native CLI:
rm -rf ~/.sw-paasThen remove the following lines from your shell profile (~/.zshrc or ~/.bash_profile):
# Shopware PaaS CLI
export SW_PAAS_INSTALL="$HOME/.sw-paas"
export PATH="$SW_PAAS_INSTALL/bin:$PATH"