diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -30,18 +30,18 @@ Plutia is a deterministic, verifiable PLC mirror for `plc.directory` with signed ```bash go test ./... go build ./cmd/plutia -./plutia serve --config=config.yaml +./plutia serve --config=config.default.yaml ``` ### CLI Commands ```bash -plutia serve --config=config.yaml [--max-ops=0] -plutia replay --config=config.yaml [--max-ops=0] -plutia verify --config=config.yaml --did=did:plc:example -plutia snapshot --config=config.yaml -plutia bench --config=config.yaml --max-ops=200000 -plutia compare --config=config.yaml --remote=https://mirror.example.com +plutia serve --config=config.default.yaml [--max-ops=0] +plutia replay --config=config.default.yaml [--max-ops=0] +plutia verify --config=config.default.yaml --did=did:plc:example +plutia snapshot --config=config.default.yaml +plutia bench --config=config.default.yaml --max-ops=200000 +plutia compare --config=config.default.yaml --remote=https://mirror.example.com plutia version ``` @@ -138,9 +138,9 @@ Using benchmarked density (~1.2KB/op total): Always keep extra headroom for compaction, checkpoints, and operational buffers. -### Example `config.yaml` +### Example `config.default.yaml` -See [`config.yaml`](./config.yaml). Core knobs: +See [`config.default.yaml`](./config.default.yaml). Core knobs: - `mode` - `verify` @@ -157,7 +157,7 @@ services: plutia: image: golang:1.25 working_dir: /app - command: sh -lc "go build -trimpath -o /app/bin/plutia ./cmd/plutia && /app/bin/plutia serve --config=/app/config.yaml" + command: sh -lc "go build -trimpath -o /app/bin/plutia ./cmd/plutia && /app/bin/plutia serve --config=/app/config.default.yaml" ports: - "8080:8080" volumes: @@ -178,7 +178,7 @@ services: Use: ```bash -plutia compare --config=config.yaml --remote=https://mirror.example.com +plutia compare --config=config.default.yaml --remote=https://mirror.example.com ``` The command fetches remote `/checkpoints/latest` and compares: |