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 deploifai
Or just run the following script:
curl -L https://packages.deploif.ai/apt/scripts/cli-install.sh | bash
Install using homebrew:
# add tap
brew tap deploifai/deploifai
# install
brew install deploifai
Install using scoop:
# add bucket
scoop bucket add deploifai https://github.com/deploifai/scoop-deploifai.git
# install
scoop install deploifai
Login with a personal access token generated from the Deploifai Dashboard:
deploifai auth login
Other useful commands:
deploifai version
deploifai help
For more information, please see the documentation.