From 761d2f7d95c057e3de23c8166642c526fa88421b Mon Sep 17 00:00:00 2001 From: Sharujan Sreekaran <34523327+ssreekar@users.noreply.github.com> Date: Sat, 21 Oct 2023 11:37:39 -0400 Subject: [PATCH] fix: Update Prisma Migrate to Prisma Deploy in Dockerfile (#12) * Migrate Dev to Deploy For Docker * Remove Init in package.json --- backend/typescript/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/typescript/package.json b/backend/typescript/package.json index 8c5806a6..6adaeebe 100644 --- a/backend/typescript/package.json +++ b/backend/typescript/package.json @@ -9,7 +9,7 @@ "lint": "eslint . --ext .ts,.js", "fix": "eslint . --ext .ts,.js --fix", "postinstall": "tsc", - "prismaInitAndRun": "npx prisma migrate dev --name init && nodemon -L" + "prismaInitAndRun": "npx prisma migrate deploy && nodemon -L" }, "keywords": [], "author": "",