Skip to content

Commit 185fb58

Browse files
committed
DATABASE_PROVIDER default is posttgresql
1 parent 5829762 commit 185fb58

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

runWithProvider.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ const { DATABASE_PROVIDER } = process.env;
66

77
if (!DATABASE_PROVIDER) {
88
console.error('DATABASE_PROVIDER is not set in the .env file');
9-
process.exit(1);
9+
DATABASE_PROVIDER = "postgresql"
10+
// process.exit(1);
1011
}
1112

1213
const command = process.argv

0 commit comments

Comments
 (0)