From 59b221a6eee6a59b8e8ad3e840ede4bb3843f360 Mon Sep 17 00:00:00 2001 From: Ly Tuan Kiet Date: Fri, 6 Dec 2024 19:06:27 +0700 Subject: [PATCH] chore: update subproject commit and modify prisma studio command - Updated the subproject commit reference in epess-database to the latest version. - Modified the prisma studio command in package.json to use dotenv for environment variable management, enhancing configuration flexibility. --- epess-database | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/epess-database b/epess-database index cf5e1bc..6ed88c3 160000 --- a/epess-database +++ b/epess-database @@ -1 +1 @@ -Subproject commit cf5e1bcf315ac012464882aa5e15ce3b55270158 +Subproject commit 6ed88c39eddea6b5a4d2c178f357ca0713828824 diff --git a/package.json b/package.json index 0d681ee..862ba43 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "prisma:reset": "npx prisma migrate reset --schema=./epess-database/prisma/schema.prisma", "prisma:seed": "npx prisma db seed --schema=./epess-database/prisma/schema.prisma", "prisma:format": "npx prisma format --schema=./epess-database/prisma/schema.prisma", - "prisma:studio": "npx prisma studio --schema=./epess-database/prisma/schema.prisma", + "prisma:studio": "dotenv -e .env -- npx prisma studio --schema=./epess-database/prisma/schema.prisma", "biome:check": "biome check", "biome:fix": "biome fix --write", "test": "jest",