feat: add v0.1 runtime skeleton
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import { startManagerServer } from "./server.js";
|
||||
|
||||
const port = Number(process.env.PORT ?? process.env.AGENTRUN_MGR_PORT ?? "8080");
|
||||
const host = process.env.HOST ?? "0.0.0.0";
|
||||
const started = await startManagerServer({ port, host });
|
||||
console.log(JSON.stringify({ ok: true, serviceId: "agentrun-mgr", baseUrl: started.baseUrl }));
|
||||
Reference in New Issue
Block a user