This repository hosts builds of the GameFlow CLI.
GameFlow is a self-driving multiplayer infrastructure platform built for game developers. It handles the heavy lifting so you can focus on building great games.
Key features:
- Game Server Hosting — Deploy servers globally with automatic ping-based routing and DDoS protection
- Matchmaking — Visual rule engine for balanced, competitive matchmaking
- Skill Rating — AI-powered rating models without needing a data science team
- Analytics — Real-time stats, server monitoring, and performance insights
- SDKs & APIs — Integrate quickly with developer-friendly tooling
Learn more at gameflow.gg · docs.gameflow.gg
The GameFlow CLI lets you manage your GameFlow resources from the terminal — builds, server fleets, matchmaking configuration, and more.
curl -fsSL https://raw.githubusercontent.com/GameFlowGG/gameflow-cli-releases/main/install.sh | shThis will:
- Detect your OS and architecture automatically
- Download the latest dev binary to
~/.gameflow/bin/gameflow - Add it to your
PATH
To install a specific version instead of dev:
curl -fsSL https://raw.githubusercontent.com/GameFlowGG/gameflow-cli-releases/main/install.sh | sh -s 1.2.0Run in PowerShell:
irm https://raw.githubusercontent.com/GameFlowGG/gameflow-cli-releases/main/install.ps1 | iexThis will download the latest dev binary to %USERPROFILE%\.gameflow\bin\gameflow.exe and add it to your user PATH. No admin rights required.
To install a specific version:
& ([scriptblock]::Create((irm https://raw.githubusercontent.com/GameFlowGG/gameflow-cli-releases/main/install.ps1))) 1.2.0curl -fsSL https://raw.githubusercontent.com/GameFlowGG/gameflow-cli-releases/main/uninstall.sh | shirm https://raw.githubusercontent.com/GameFlowGG/gameflow-cli-releases/main/uninstall.ps1 | iexBoth scripts remove the install directory (including config and stored credentials) and clean up your PATH.
All platform binaries are available on the Releases page.
| Platform | Architecture | Binary |
|---|---|---|
| Linux | x86_64 | gameflow-linux-amd64 |
| Linux | ARM64 | gameflow-linux-arm64 |
| macOS | x86_64 | gameflow-darwin-amd64 |
| macOS | Apple Silicon | gameflow-darwin-arm64 |
| Windows | x86_64 | gameflow-windows-amd64.exe |
- Website: https://www.gameflow.gg/
- Documentation: https://docs.gameflow.gg/