mongodb-backup icon indicating copy to clipboard operation
mongodb-backup copied to clipboard

Scheduled backup solution for MongoDB

Results 1 mongodb-backup issues
Sort by recently updated
recently updated
newest added

It seems messy to do this: ``` js tasks.mongodump().then(function () { tasks.zip(config.database, path.join(__dirname, 'dump')).then(function (filepath) { tasks.s3(filepath).then(function () { tasks.clean(filepath).then(tasks.clean(path.join(__dirname, 'dump', config.database))).then(function () { utils.log('debug', 'Done.'); }).catch(function (ex) { utils.log('error',...