From 185fb587e0614afd7737ea2019863ea28d5d182a Mon Sep 17 00:00:00 2001 From: oismaelash Date: Wed, 2 Oct 2024 01:25:40 -0300 Subject: [PATCH] DATABASE_PROVIDER default is posttgresql --- runWithProvider.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runWithProvider.js b/runWithProvider.js index 8fe1af0d..ea9fac35 100644 --- a/runWithProvider.js +++ b/runWithProvider.js @@ -6,7 +6,8 @@ const { DATABASE_PROVIDER } = process.env; if (!DATABASE_PROVIDER) { console.error('DATABASE_PROVIDER is not set in the .env file'); - process.exit(1); + DATABASE_PROVIDER = "postgresql" + // process.exit(1); } const command = process.argv