From 06e135a941c38450cc8dfc6699f32347730efe81 Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Sat, 7 Mar 2026 10:31:41 -0600 Subject: [PATCH] fix(orchestrator): use symlink path in prisma:generate script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #707 added the symlink apps/orchestrator/prisma/schema.prisma but accidentally reverted the script back to ../api/prisma/schema.prisma. Docker does not have apps/api/prisma/ — the symlink IS the schema. Change script to ./prisma/schema.prisma so both CI (symlink resolved) and Docker (symlink followed by kaniko COPY) work correctly. --- apps/orchestrator/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/orchestrator/package.json b/apps/orchestrator/package.json index 29490ea..d0e7681 100644 --- a/apps/orchestrator/package.json +++ b/apps/orchestrator/package.json @@ -7,7 +7,7 @@ "dev": "nest start --watch", "lint": "eslint src/", "lint:fix": "eslint src/ --fix", - "prisma:generate": "prisma generate --schema=../api/prisma/schema.prisma", + "prisma:generate": "prisma generate --schema=./prisma/schema.prisma", "start": "node dist/main.js", "start:debug": "nest start --debug --watch", "start:dev": "nest start --watch",