Created
August 15, 2017 20:37
-
-
Save akopcz2/a5489b4c9c6186f9c41d145cd43916ee to your computer and use it in GitHub Desktop.
mongo dump
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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