DATABASE_PROVIDER default is posttgresql

This commit is contained in:
oismaelash 2024-10-02 01:25:40 -03:00
parent 5829762f91
commit 185fb587e0

View File

@ -6,7 +6,8 @@ const { DATABASE_PROVIDER } = process.env;
if (!DATABASE_PROVIDER) { if (!DATABASE_PROVIDER) {
console.error('DATABASE_PROVIDER is not set in the .env file'); console.error('DATABASE_PROVIDER is not set in the .env file');
process.exit(1); DATABASE_PROVIDER = "postgresql"
// process.exit(1);
} }
const command = process.argv const command = process.argv