mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-09 01:35:18 +02:00
The target → graph rename shipped in PR #17 but omnigraph.example.yaml still used the old form (`targets:` / `cli.target`). Since the serde struct uses `rename = "graphs"` without a `targets` alias, the example wouldn't deserialize against current code. Update the example to the new form. No alias is being added — the deserialization error for old configs is loud and clear, which is the better migration signal for a young project.
15 lines
196 B
YAML
15 lines
196 B
YAML
graphs:
|
|
local:
|
|
uri: ./repo.omni
|
|
dev:
|
|
uri: http://127.0.0.1:8080
|
|
bearer_token_env: OMNIGRAPH_BEARER_TOKEN
|
|
|
|
cli:
|
|
graph: local
|
|
branch: main
|
|
|
|
query:
|
|
roots:
|
|
- queries
|
|
- .
|