mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
21 lines
436 B
Jsonnet
21 lines
436 B
Jsonnet
|
|
|
||
|
|
local engine = import "docker-compose.jsonnet";
|
||
|
|
local decode = import "decode-config.jsonnet";
|
||
|
|
local components = import "components.jsonnet";
|
||
|
|
|
||
|
|
// Import config
|
||
|
|
local config = import "config.json";
|
||
|
|
|
||
|
|
// Produce patterns from config
|
||
|
|
local patterns = decode(config);
|
||
|
|
|
||
|
|
// Extract resources usnig the engine
|
||
|
|
local resources = std.foldl(
|
||
|
|
function(state, p) state + p.create(engine),
|
||
|
|
std.objectValues(patterns),
|
||
|
|
{}
|
||
|
|
);
|
||
|
|
|
||
|
|
resources
|
||
|
|
|