Install the CLI
The zerokie CLI is a single binary with no dependencies. Download it for your platform and you are ready to go.
Quick install
Section titled “Quick install”curl -fsSL https://releases.zerokie.com/install.sh | shTo install to a custom directory (useful in CI/CD pipelines):
INSTALL_DIR=./bin curl -fsSL https://releases.zerokie.com/install.sh | shManual download
Section titled “Manual download”# macOS (Apple Silicon)curl -Lo zerokie https://releases.zerokie.com/latest/zerokie-darwin-arm64chmod +x zerokiesudo mv zerokie /usr/local/bin/
# macOS (Intel)curl -Lo zerokie https://releases.zerokie.com/latest/zerokie-darwin-amd64chmod +x zerokiesudo mv zerokie /usr/local/bin/
# Linux (x86_64)curl -Lo zerokie https://releases.zerokie.com/latest/zerokie-linux-amd64chmod +x zerokiesudo mv zerokie /usr/local/bin/
# Linux (ARM64)curl -Lo zerokie https://releases.zerokie.com/latest/zerokie-linux-arm64chmod +x zerokiesudo mv zerokie /usr/local/bin/Verify the installation
Section titled “Verify the installation”zerokie versionYou should see the version number printed to your terminal.
Authenticate
Section titled “Authenticate”Log in with the API key provided during onboarding:
zerokie login --api-key YOUR_API_KEYThis saves your credentials to ~/.zerokie/config.json. All subsequent commands use this stored key.
Next steps
Section titled “Next steps”With the CLI installed and authenticated, you are ready to deploy your first app.