DB_URL with a Postgres connection string and TOKEN with the bearer
token clients and admins present.
Both dev and server take --config <config.yaml> to register agents and
policies at boot, plus --listen-addr, --log-level, and --log-format. See
Deployment for the rest of the server’s flags.
Build it with make build, which writes bin/rebuno, or run from source with
go run ./cmd/rebuno ….
Reaching a kernel
Agents
Executions
exec ls narrows with --agent, --status, and --limit.
exec watch exits non-zero
if the execution failed or was cancelled, so it can gate a script.
Approvals
Both decisions record who made them:
--by names the approver and defaults to
$USER, and --reason records a rationale alongside it.
Policy
Both compile the bundle locally first, so one that does not parse is refused
before it reaches the kernel.
policy test runs the cases in the .policytest.yaml beside the bundle, and
exits non-zero if any expectation goes unmet.
See Testing a bundle.