mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
12 lines
418 B
Jsonnet
12 lines
418 B
Jsonnet
|
|
local neo4j = import "components/neo4j.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 openai = import "components/openai.jsonnet";
|
|
|
|
local config = neo4j + pulsar + milvus + grafana + trustgraph + openai;
|
|
|
|
std.manifestYamlDoc(config)
|
|
|