Skip to content

Quickstart

Stand up the full orlop stack on one host and give an agent a durable disk in two commands — install, then orlop dev up. That second command runs the whole single-node stack: control plane + data-plane server + one mounted disk.

Installs into ~/.local/bin:

Terminal window
curl -fsSL https://orlop.dev/install.sh | sh
Terminal window
orlop dev up

It prints where each component lives and stays in the foreground:

disk mounted ./orlop-dev/mnt (agent demo)
stop: Ctrl-C, or `orlop dev down` from another shell

Write a file to the disk:

Terminal window
echo "hello from a durable agent disk" > ./orlop-dev/mnt/hello.txt

Stop the stack — Ctrl-C in the first shell, or orlop dev down from another. The mount point goes empty; the data isn’t on your local filesystem. Bring it back up and read the file back:

Terminal window
orlop dev up # same default --dir ./orlop-dev, reuses the data
cat ./orlop-dev/mnt/hello.txt # → hello from a durable agent disk

Ctrl-C (or orlop dev down) stops the stack. To discard the data too, remove the work directory:

Terminal window
rm -rf ./orlop-dev

For install options, building from source, overriding ports and paths, inspecting the stack, running it detached (CI/agents/IDEs), and troubleshooting, see advanced-usage.md. To run each component by hand, see manual-bring-up.md.