mirror of
https://github.com/paperclipai/paperclip
synced 2026-04-25 17:25:15 +02:00
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { createHash } from "node:crypto";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import { createLocalServiceKey } from "../server/src/services/local-service-supervisor.ts";
|
|
|
|
export const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");
|
|
|
|
export function createDevServiceIdentity(input: {
|
|
mode: "watch" | "dev";
|
|
forwardedArgs: string[];
|
|
networkProfile: string;
|
|
port: number;
|
|
}) {
|
|
const envFingerprint = createHash("sha256")
|
|
.update(
|
|
JSON.stringify({
|
|
mode: input.mode,
|
|
forwardedArgs: input.forwardedArgs,
|
|
networkProfile: input.networkProfile,
|
|
port: input.port,
|
|
}),
|
|
)
|
|
.digest("hex");
|
|
|
|
const serviceName = input.mode === "watch" ? "paperclip-dev-watch" : "paperclip-dev-once";
|
|
const serviceKey = createLocalServiceKey({
|
|
profileKind: "paperclip-dev",
|
|
serviceName,
|
|
cwd: repoRoot,
|
|
command: "dev-runner.ts",
|
|
envFingerprint,
|
|
port: input.port,
|
|
scope: {
|
|
repoRoot,
|
|
mode: input.mode,
|
|
},
|
|
});
|
|
|
|
return {
|
|
serviceKey,
|
|
serviceName,
|
|
envFingerprint,
|
|
};
|
|
}
|