Introduction

Installation

Download the correct binary for your operating system and then continue with its path.

Linux

  1. Download the binary for your operating system:
curl -L -o quickdeploy https://quickdeploy.dev/api/download/...
  1. Move the binary to a directory in your PATH:
sudo mv quickdeploy /usr/local/bin/quickdeploy
  1. Make the binary executable:
chmod +x /usr/local/bin/quickdeploy
  1. Run quickdeploy --help to verify the installation

macOS

  1. Add the tap to your homebrew:
brew tap programonaut/quickdeploy
  1. Install the binary:
brew install quickdeploy
  1. Run quickdeploy --help to verify the installation

  2. To update the binary run:

brew update
brew upgrade quickdeploy

Manual

  1. Download the binary for your operating system:
curl -L -o quickdeploy https://quickdeploy.dev/api/download/...
  1. Move the binary to a directory in your PATH:
sudo mv quickdeploy /usr/local/bin/quickdeploy
  1. Make the binary executable:
chmod +x /usr/local/bin/quickdeploy
  1. Run quickdeploy --help to verify the installation

Windows (CMD)

  1. Download the binary for Windows
curl -L -o quickdeploy.exe https://quickdeploy.dev/api/download/windows-amd64
  1. Create a bin directory and move the binary there (one-time setup)
mkdir "%USERPROFILE%\bin"
move /Y quickdeploy.exe "%USERPROFILE%\bin\quickdeploy.exe"
  1. Add the directory to your PATH (if not already added)
    You can do this by pressing the Windows key and typing "env" and then clicking on "Edit the system environment variables".
  2. Open a new terminal and verify:
quickdeploy --help

Important Notes

On Windows and macOS you might need to allow the binary to be executed and give it a exception from your security settings.

Previous
Requirements