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
appflightis 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"