Installation
Installation Options
You can install MiniPaaS CLI using one of the following methods:
π§βπ» Option 1: Install via Go
If you have Go 1.21+ installed, use:
go install github.com/sombrahq/minipaas/minipaas-cli/cmd/minipaas@main
This places the
minipaasbinary in$(go env GOPATH)/bin. Make sure that directory is in your systemPATH:
export PATH="$(go env GOPATH)/bin:$PATH"
π¦ Option 2: Download Prebuilt Binaries
-
Go to the GitHub Releases.
-
Download the binary for your platform:
minipaas-linux-amd64minipaas-darwin-arm64minipaas-windows-amd64.exe
-
Make it executable (Linux/macOS):
chmod +x minipaas-*
mv minipaas-* /usr/local/bin/minipaas
- Confirm installation:
minipaas --help
π Option 3: Build from Source
If you prefer to build manually:
git clone https://github.com/sombrahq/minipaas.git
cd minipaas/minipaas-cli/cmd/minipaas
go mod tidy
go build
Output is saved in the build/ directory.
Requirements
- Go 1.21+
- Docker CLI and OpenSSL (for TLS certs)
- Unix-like shell or terminal (Linux, macOS, or Windows PowerShell)
Need help? Open an issue or contact me.