Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Installation

Install script

latest
curl -L https://rflow.xyz/install.sh | bash

Once installed, check it worked:

rflow --help

The installer also adds two helpers to your PATH:

  • rflowup — update to the latest release (rflowup --version X.X.X for a specific one)
  • rflowdown — uninstall rflow

Docker

Every release is published as a docker image:

docker run --rm ghcr.io/joshstevens19/rflow:latest --help

Mount your project directory and point rflow at it:

docker run --rm -v $(pwd):/app ghcr.io/joshstevens19/rflow:latest start --path /app

See Self-hosting for a full compose setup and helm chart.

From source

git clone https://github.com/joshstevens19/rflow
cd rflow
cargo install --path crates/cli

Requires a recent Rust toolchain (the repo pins one in rust-toolchain.toml).

Next step

Create your first project — Quickstart.