mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
12 lines
430 B
Jsonnet
12 lines
430 B
Jsonnet
|
|
local cassandra = import "components/cassandra.jsonnet";
|
|
local pulsar = import "components/pulsar.jsonnet";
|
|
local milvus = import "components/milvus.jsonnet";
|
|
local grafana = import "components/grafana.jsonnet";
|
|
local trustgraph = import "components/trustgraph.jsonnet";
|
|
local cohere = import "components/cohere.jsonnet";
|
|
|
|
local config = cassandra + pulsar + milvus + grafana + trustgraph + cohere;
|
|
|
|
std.manifestYamlDoc(config)
|
|
|