2018-01-10 15:31:54 +01:00
|
|
|
'use strict';
|
|
|
|
|
2018-05-04 18:27:39 +02:00
|
|
|
/* eslint-disable import/no-unresolved */
|
2018-01-10 15:31:54 +01:00
|
|
|
// Node.js core.
|
|
|
|
const execSync = require('child_process').execSync;
|
|
|
|
|
|
|
|
// Logger.
|
|
|
|
const logger = require('strapi-utils').logger;
|
|
|
|
|
|
|
|
module.exports = (scope, success, error) => {
|
2018-02-12 19:14:36 +01:00
|
|
|
const Redis = require(`${scope.tmpPath}/node_modules/ioredis`);
|
2018-01-10 15:31:54 +01:00
|
|
|
const redis = new Redis({
|
2018-01-17 09:14:34 +01:00
|
|
|
port: scope.database.settings.port,
|
|
|
|
host: scope.database.settings.host,
|
2018-01-17 10:13:23 +01:00
|
|
|
password: scope.database.settings.password,
|
2018-01-17 09:14:34 +01:00
|
|
|
db: scope.database.settings.database
|
2018-01-10 15:31:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
redis.connect((err) => {
|
|
|
|
redis.disconnect();
|
|
|
|
|
|
|
|
if (err) {
|
2018-01-10 18:08:43 +01:00
|
|
|
logger.warn('Database connection has failed! Make sure your database is running.');
|
2018-01-10 15:31:54 +01:00
|
|
|
return error();
|
|
|
|
}
|
|
|
|
|
2018-01-10 18:08:43 +01:00
|
|
|
logger.info('The app has been connected to the database successfully!');
|
2018-01-10 15:31:54 +01:00
|
|
|
|
2018-03-18 13:29:49 +01:00
|
|
|
execSync(`rm -r "${scope.tmpPath}"`);
|
2018-01-10 15:31:54 +01:00
|
|
|
|
|
|
|
logger.info('Copying the dashboard...');
|
|
|
|
|
|
|
|
success();
|
|
|
|
});
|
|
|
|
};
|