mirror of
https://github.com/strapi/strapi.git
synced 2025-07-15 21:11:28 +00:00
36 lines
879 B
JavaScript
36 lines
879 B
JavaScript
'use strict';
|
|
|
|
/* eslint-disable import/no-unresolved */
|
|
// Node.js core.
|
|
const execSync = require('child_process').execSync;
|
|
|
|
// Logger.
|
|
const logger = require('strapi-utils').logger;
|
|
|
|
module.exports = (scope, success, error) => {
|
|
const Redis = require(`${scope.tmpPath}/node_modules/ioredis`);
|
|
const redis = new Redis({
|
|
port: scope.database.settings.port,
|
|
host: scope.database.settings.host,
|
|
password: scope.database.settings.password,
|
|
db: scope.database.settings.database
|
|
});
|
|
|
|
redis.connect((err) => {
|
|
redis.disconnect();
|
|
|
|
if (err) {
|
|
logger.warn('Database connection has failed! Make sure your database is running.');
|
|
return error();
|
|
}
|
|
|
|
logger.info('The app has been connected to the database successfully!');
|
|
|
|
execSync(`rm -r "${scope.tmpPath}"`);
|
|
|
|
logger.info('Copying the dashboard...');
|
|
|
|
success();
|
|
});
|
|
};
|