|
| 1 | +# Production Proof Backend Setup |
| 2 | + |
| 3 | +`gatl-ad-lab` expects the AD proof backend to remain external. The production |
| 4 | +boundary manifest names: |
| 5 | + |
| 6 | +```text |
| 7 | +cmd://gatl-ad-proof-backend |
| 8 | +``` |
| 9 | + |
| 10 | +## Local Activation Probe |
| 11 | + |
| 12 | +Install the standalone backend: |
| 13 | + |
| 14 | +```bash |
| 15 | +cd /home/jisheng-yang/projects/gatl-ad-proof-backend |
| 16 | +cargo install --path . --force |
| 17 | +gatl-ad-proof-backend --version |
| 18 | +``` |
| 19 | + |
| 20 | +Then run the `gatl-ad-lab` gate: |
| 21 | + |
| 22 | +```bash |
| 23 | +cd /home/jisheng-yang/projects/gatl-ad-lab |
| 24 | +cargo run -- validate-proof-boundary examples/proof-backend-boundary.valid.json \ |
| 25 | + --out target/production-probes/proof-backend-boundary-validation.after-backend.json |
| 26 | +cargo run -- doctor-proof-backend \ |
| 27 | + --checked-at 2026-06-14T00:00:00Z \ |
| 28 | + --out target/production-probes/proof-backend-environment.after-backend.json |
| 29 | +cargo run -- gate-proof-backend \ |
| 30 | + examples/proof-backend-boundary.valid.json \ |
| 31 | + target/production-probes/proof-backend-environment.after-backend.json \ |
| 32 | + --out target/production-probes/proof-backend-activation-gate.after-backend.json |
| 33 | +``` |
| 34 | + |
| 35 | +Expected result: |
| 36 | + |
| 37 | +- boundary validation is valid; |
| 38 | +- backend environment is production-ready; |
| 39 | +- activation gate is open. |
| 40 | + |
| 41 | +## Boundary |
| 42 | + |
| 43 | +This setup only proves that the external backend command exists and satisfies |
| 44 | +the v0.1 command boundary. It does not move proof execution into `gatl-ad-lab`. |
| 45 | +The v0.1 backend result remains `validated-not-proved` until real proof-term |
| 46 | +checking is added. |
0 commit comments