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.
1. Install the binaries
Section titled “1. Install the binaries”Installs into ~/.local/bin:
curl -fsSL https://orlop.dev/install.sh | sh2. Bring up the stack
Section titled “2. Bring up the stack”orlop dev upIt 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 shell3. See it persist (optional)
Section titled “3. See it persist (optional)”Write a file to the disk:
echo "hello from a durable agent disk" > ./orlop-dev/mnt/hello.txtStop 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:
orlop dev up # same default --dir ./orlop-dev, reuses the datacat ./orlop-dev/mnt/hello.txt # → hello from a durable agent diskClean up
Section titled “Clean up”Ctrl-C (or orlop dev down) stops the stack. To discard the data too, remove
the work directory:
rm -rf ./orlop-devGoing further
Section titled “Going further”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.