Installation

Install the AppFlight CLI using Dart's pub global activate.

Prerequisites

The CLI requires Dart SDK >=3.0.0. If you have Flutter installed, you already have Dart.

dart --version

Install via pub.dev

dart pub global activate appflight_cli

The binary installed on your PATH is appflight (not appflight_cli — the package name on pub.dev is appflight_cli, the executable it installs is appflight).

Note: If appflight is not found after installation, add the Dart pub cache bin to your PATH:

# Add to ~/.zshrc or ~/.bashrc
export PATH="$PATH:$HOME/.pub-cache/bin"

Install from source

git clone https://github.com/mhmzdev/appflight_cli.git
cd appflight_cli
dart pub global activate --source path .

Re-run the same command after pulling updates.

Verify

appflight --help

Uninstall

dart pub global deactivate appflight_cli