From 0f6a678b7488f665fb57b6a3ec17b1215d99b1d7 Mon Sep 17 00:00:00 2001 From: Alex van Andel Date: Thu, 16 Mar 2023 01:07:02 +0000 Subject: [PATCH] Disable PRISMA_GENERATE_DATAPROXY --- .env.example | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index bbe18b86bc..7e1f26321d 100644 --- a/.env.example +++ b/.env.example @@ -22,10 +22,13 @@ CALCOM_LICENSE_KEY= # - DATABASE ************************************************************************************************ DATABASE_URL="postgresql://postgres:@localhost:5450/calendso" -# Opt-in to a dedicated connection pool for Prisma using Prisma Data Proxy -# Cold boots will be faster and you will be able to scale your DB independently of your application. + +# Uncomment to enable a dedicated connection pool for Prisma using Prisma Data Proxy +# Cold boots will be faster and you'll be able to scale your DB independently of your app. # @see https://www.prisma.io/docs/data-platform/data-proxy/use-data-proxy -PRISMA_GENERATE_DATAPROXY=false +# PRISMA_GENERATE_DATAPROXY=true +PRISMA_GENERATE_DATAPROXY= + # *********************************************************************************************************** # - SHARED **************************************************************************************************