32 lines
827 B
JavaScript
Raw Normal View History

'use strict';
// Node.js core.
const execSync = require('child_process').execSync;
const path = require('path');
// Logger.
const logger = require('strapi-utils').logger;
module.exports = (scope, success, error) => {
const knex = require(path.resolve(`${scope.rootPath}/node_modules/knex`))({
client: scope.client.module,
connection: Object.assign(scope.database.settings, {
user: scope.database.settings.username
2018-01-10 18:08:43 +01:00
})
});
knex.raw('select 1+1 as result').then(() => {
2018-01-10 18:08:43 +01:00
logger.info('The app has been connected to the database successfully');
knex.destroy();
execSync(`rm -r ${scope.rootPath}`);
logger.info('Copying the dashboard...');
success();
})
.catch(() => {
2018-01-10 18:08:43 +01:00
logger.warn('Database connection has failed! Make sure your database is running.');
error();
});
};