mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-13 07:04:50 -06:00
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
const dotenv = require('dotenv');
|
|
const { execSync } = require('child_process');
|
|
const { existsSync } = require('fs');
|
|
|
|
dotenv.config();
|
|
|
|
const { DATABASE_PROVIDER } = process.env;
|
|
const databaseProviderDefault = DATABASE_PROVIDER ?? 'postgresql';
|
|
|
|
if (!DATABASE_PROVIDER) {
|
|
console.warn(`DATABASE_PROVIDER is not set in the .env file, using default: ${databaseProviderDefault}`);
|
|
}
|
|
|
|
let command = process.argv
|
|
.slice(2)
|
|
.join(' ')
|
|
.replace(/DATABASE_PROVIDER/g, databaseProviderDefault);
|
|
|
|
if (command.includes('rmdir') && existsSync('prisma\\migrations')) {
|
|
try {
|
|
execSync('rmdir /S /Q prisma\\migrations', { stdio: 'inherit' });
|
|
} catch (error) {
|
|
console.error(`Error removing directory: prisma\\migrations`);
|
|
process.exit(1);
|
|
}
|
|
} else if (command.includes('rmdir')) {
|
|
console.warn(`Directory 'prisma\\migrations' does not exist, skipping removal.`);
|
|
}
|
|
|
|
try {
|
|
execSync(command, { stdio: 'inherit' });
|
|
} catch (error) {
|
|
console.error(`Error executing command: ${command}`);
|
|
process.exit(1);
|
|
}
|