This is the CLI for the Deploifai platform.
Install using apt:
# install curl, ca-certificates, gnupg
sudo apt install -y curl ca-certificates gnupg && gpg --list-keys
# download gpg public key
curl -fsSL https://packages.deploif.ai/apt/pubkey | sudo gpg --dearmor -o /usr/share/keyrings/deploifai.gpg
# add repo to sources.list
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/deploifai.gpg] https://packages.deploif.ai/apt stable main" | sudo tee -a /etc/apt/sources.list.d/deploifai.list
# update apt
sudo apt update
# install
sudo apt install deploifaiOr just run the following script:
curl -L https://packages.deploif.ai/apt/scripts/cli-install.sh | bashInstall using homebrew:
# add tap
brew tap deploifai/deploifai
# install
brew install deploifaiInstall using scoop:
# add bucket
scoop bucket add deploifai https://github.com/deploifai/scoop-deploifai.git
# install
scoop install deploifaiLogin with a personal access token generated from the Deploifai Dashboard:
deploifai auth loginOther useful commands:
deploifai version
deploifai helpFor more information, please see the documentation.