chore: add graph explorer make target

This commit is contained in:
2026-06-03 17:24:58 +02:00
parent f09f110e77
commit 5e89f6a075
4 changed files with 104 additions and 4 deletions

View File

@@ -6,18 +6,38 @@ verified, and how to extract the shared engine once the second adapter is ready.
## Launch
Start the registry against the local SQLite database:
List available Make targets from the repo root:
```bash
railiance-fabric-registry --db .railiance-fabric/registry.sqlite3 --port 8765
make
```
Open the map:
Start the registry-backed graph explorer explicitly:
```bash
make graph-explorer
```
This serves the graph explorer at:
```text
http://127.0.0.1:8765/ui/graph-explorer
```
The target defaults to `.railiance-fabric/registry.sqlite3`, host
`127.0.0.1`, and port `8765`. Override those when needed:
```bash
make graph-explorer PORT=8876
make graph-explorer HOST=0.0.0.0 PORT=8765 REGISTRY_DB=/tmp/railiance-fabric.sqlite3
```
Equivalent raw command:
```bash
railiance-fabric-registry --db .railiance-fabric/registry.sqlite3 --port 8765
```
Useful supporting endpoints:
```text