Skip to content

Instantly share code, notes, and snippets.

@akopcz2
Created August 15, 2017 20:37
Show Gist options
  • Save akopcz2/a5489b4c9c6186f9c41d145cd43916ee to your computer and use it in GitHub Desktop.
Save akopcz2/a5489b4c9c6186f9c41d145cd43916ee to your computer and use it in GitHub Desktop.
mongo dump
require('dotenv').config()
let fs = require("fs");
let shell = require('shelljs');
//get db from env
let database = process.env.MONGO_URI;
database = database.split('/').pop();
init();
//Dumps the database
function dumpDataBase(){
shell.exec(`mongodump --db ${database}`, () => {
console.log('dumped');
});
}
//Zips the DataBase
function zipDump(){
let date = new Date();
let day = date.getDate();
let month = date.getMonth();
month = month + 1;
let year = date.getFullYear();
let timestamp = Math.floor(date.getTime() / 1000);
let dateString = `${month}_${day}_${year}_${timestamp}`;
shell.exec(`zip -r ${dateString}_${database}.zip dump` , () => {
console.log('dumped');
});
}
//Runs functions
function init(){
dumpDataBase();
zipDump();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment