Installation
Install script
latest
curl -L https://rflow.xyz/install.sh | bashOnce installed, check it worked:
rflow --helpThe installer also adds two helpers to your PATH:
rflowup— update to the latest release (rflowup --version X.X.Xfor a specific one)rflowdown— uninstall rflow
Docker
Every release is published as a docker image:
docker run --rm ghcr.io/joshstevens19/rflow:latest --helpMount your project directory and point rflow at it:
docker run --rm -v $(pwd):/app ghcr.io/joshstevens19/rflow:latest start --path /appSee 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/cliRequires a recent Rust toolchain (the repo pins one in rust-toolchain.toml).
Next step
Create your first project — Quickstart.