generated from coulomb/repo-seed
chore: add graph explorer make target
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user