Installing the CLI
The Tapitalee CLI (tapit) is a single self-contained binary. Pick your platform below, download the binary, and place it on your PATH.
ℹ️
The download links and install commands for your account are always available on your dashboard at https://app.tapitalee.com/dashboard/cli, which also serves the latest CLI version.
Install
Choose the download that matches your operating system and CPU architecture. Each command downloads the tapit binary to /usr/local/bin and makes it executable.
Linux (Intel/x86)
sudo curl --compressed -o /usr/local/bin/tapit https://tapitalee.s3.us-west-2.amazonaws.com/cli/v11/linux_amd64/tapit && sudo chmod +x /usr/local/bin/tapit
Linux (ARM)
sudo curl --compressed -o /usr/local/bin/tapit https://tapitalee.s3.us-west-2.amazonaws.com/cli/v11/linux_arm64/tapit && sudo chmod +x /usr/local/bin/tapit
macOS (Intel)
sudo curl --compressed -o /usr/local/bin/tapit https://tapitalee.s3.us-west-2.amazonaws.com/cli/v11/darwin_amd64/tapit && sudo chmod +x /usr/local/bin/tapit
macOS (ARM / M1)
sudo curl --compressed -o /usr/local/bin/tapit https://tapitalee.s3.us-west-2.amazonaws.com/cli/v11/darwin_arm64/tapit && sudo chmod +x /usr/local/bin/tapit
Verify the install
Confirm the binary is on your PATH:
tapit help
Log in
Authenticate the CLI against your Tapitalee account:
tapit login
Next steps
Create and deploy your first app:
tapit create app myfirstapp region=us-east-1
tapit image deploy tag=v1
For authentication details, tokens, specifying an app, and common flags, see CLI Setup.