mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 17:39:39 +02:00
Multi-stage Containerfile for all Node.js services (single image, different CMD per docker-compose service). ESM entrypoints for gateway, config, text-completion, prompt, embeddings, agent, and librarian. Workbench gets a separate Containerfile (nginx:alpine) with SPA routing and API/WebSocket proxy to gateway. Docker Compose updated with 6 app services (gateway, config-service, text-completion, prompt, embeddings, workbench) using shared trustgraph-ts:local image. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
// Will work once the agent service is merged.
|
|
import("../packages/flow/dist/agent/react/service.js")
|
|
.then((m) => m.run())
|
|
.catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|