yoi/crates/worker-runtime
2026-07-27 02:41:02 +09:00
..
src fmt: format runtime auth changes 2026-07-27 01:43:17 +09:00
Cargo.toml feat: add runtime trust capability auth 2026-07-26 20:45:52 +09:00
README.md docs: document runtime auth setup 2026-07-27 02:41:02 +09:00

worker-runtime

worker-runtime owns the Runtime authority surface for Worker management. A Runtime process bundles Worker lifecycle management, the HTTP/WebSocket control API, and the Worker execution backend.

Run the local Runtime server

From the repository root:

cargo run -p worker-runtime \
  --features ws-server,fs-store \
  --bin worker-runtime-rest-server \
  -- --bind 127.0.0.1:38800

By default the server listens on:

127.0.0.1:38800

To bind another address explicitly:

cargo run -p worker-runtime \
  --features ws-server,fs-store \
  --bin worker-runtime-rest-server \
  -- --bind 0.0.0.0:38800

The REST server is intended for a trusted Backend/proxy, not direct browser access. For authenticated remote Runtime setup, see ../../docs/development/server-runtime-auth.md.