Install the CLI
The Watasu CLI is a single binary called watasu. It handles app management, deploys (via Git), config vars, add-ons, domains, and database operations.
Install script (macOS, Linux, WSL)
Section titled “Install script (macOS, Linux, WSL)”curl -fsSL https://watasuio.github.io/watasu-cli/install.sh | bashThe script downloads the latest release, verifies its checksum, and installs the binary to ~/.local/bin (or ~/bin, whichever exists or is on your PATH). If the destination isn’t on your PATH, the script tells you what to add.
To choose the destination yourself:
curl -fsSL https://watasuio.github.io/watasu-cli/install.sh | WATASU_INSTALL_DIR=/usr/local/bin bashTo pin a specific version instead of the latest:
curl -fsSL https://watasuio.github.io/watasu-cli/install.sh | bash -s -- v0.1.5PowerShell (Windows)
Section titled “PowerShell (Windows)”irm https://watasuio.github.io/watasu-cli/install.ps1 | iexInstalls watasu.exe to %LOCALAPPDATA%\Programs\Watasu\bin. Set WATASU_INSTALL_DIR first to pick a different directory.
Homebrew (macOS, Linux)
Section titled “Homebrew (macOS, Linux)”brew tap watasuio/watasubrew install watasuVerify
Section titled “Verify”watasu --versionwatasu --helpYou should see the version and the top-level command list.
Update
Section titled “Update”- Homebrew:
brew upgrade watasu - Install script: re-run the install command — it always fetches the latest release.
- Authenticate — log in so the CLI can talk to the platform
- Quickstart — deploy your first app
- Command Reference — every command, in one place