| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
flyctl is a command-line interface for fly.io.
Note: Most installations of flyctl also alias flyctl to fly as a command name, and this will become the default name in the future. During the transition, note that where you see flyctl as a command, it can be replaced with fly.
brew install flyctlTo upgrade to the latest version:
brew upgrade flyctlDownload flyctl and install it into a local bin directory.
Installing the latest version:
curl -L https://fly.io/install.sh | shInstalling the latest pre-release version:
curl -L https://fly.io/install.sh | sh -s preInstalling a specific version:
curl -L https://fly.io/install.sh | sh -s 0.0.200Run the PowerShell install script:
iwr https://fly.io/install.ps1 -useb | iexDownload the appropriate version from the Releases page of the flyctl GitHub repository.
Sign into your Fly account:
fly auth loginList your apps:
fly apps listView app status:
fly status -a {app-name}flyctl will attempt to use the app name from a fly.toml file in the current directory. For example, if the current directory contains this file:
$ cat fly.toml
app: bananaflyctl will operate against the banana app unless overridden by the -a flag or another app name setting in the command line.
flyctl is automatically released at 3 PM Eastern Standard Time, Monday - Thursday. If needed, you can bump a release by running ./scripts/bump_version.sh.
There is a simple PowerShell script, winbuild.ps1, which will run the code generation for the help files, format them, and run a full build, leaving a new binary in the bin directory.
See CONTRIBUTING.md
| Back | FazBrowse Home | New Git URL |