Skip to content

Installation

One command installs Fastlane on macOS or Linux:

Terminal window
curl -fsSL https://raw.githubusercontent.com/c22-space/fastlane-new/main/install.sh | bash

This automatically:

  • Detects your OS and architecture
  • Downloads the latest release
  • Installs to /usr/local/bin/fastlane
Terminal window
cargo install fastlane-cli

Download the latest release from GitHub Releases:

Platform Architecture File
Linux x86_64 fastlane-linux-x86_64.tar.gz
macOS Apple Silicon (M1+) fastlane-macos-aarch64.tar.gz
macOS Intel fastlane-macos-x86_64.tar.gz

After downloading:

Terminal window
tar -xzf fastlane-*.tar.gz
chmod +x fastlane
sudo mv fastlane /usr/local/bin/
Terminal window
git clone https://github.com/c22-space/fastlane-new.git
cd fastlane-new
cargo build --release

The binary will be at target/release/fastlane.

Terminal window
cd frontend
npm install
npm run tauri build

This produces a native installer for your platform.

Terminal window
fastlane --version
fastlane --port 8787

The proxy starts at http://127.0.0.1:8787. Test it:

Terminal window
curl http://127.0.0.1:8787/health
# Should return: OK