Installation
Quick Install (Recommended)
Section titled “Quick Install (Recommended)”One command installs Fastlane on macOS or Linux:
curl -fsSL https://raw.githubusercontent.com/c22-space/fastlane-new/main/install.sh | bashThis automatically:
- Detects your OS and architecture
- Downloads the latest release
- Installs to
/usr/local/bin/fastlane
Install via Cargo
Section titled “Install via Cargo”cargo install fastlane-cliDownload Pre-built Binary
Section titled “Download Pre-built Binary”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:
tar -xzf fastlane-*.tar.gzchmod +x fastlanesudo mv fastlane /usr/local/bin/Install from Source
Section titled “Install from Source”git clone https://github.com/c22-space/fastlane-new.gitcd fastlane-newcargo build --releaseThe binary will be at target/release/fastlane.
Desktop App (Tauri)
Section titled “Desktop App (Tauri)”cd frontendnpm installnpm run tauri buildThis produces a native installer for your platform.
Verify Installation
Section titled “Verify Installation”fastlane --versionfastlane --port 8787The proxy starts at http://127.0.0.1:8787. Test it:
curl http://127.0.0.1:8787/health# Should return: OK