Skip to content

Instantly share code, notes, and snippets.

View Rehzende's full-sized avatar
🎯
Focusing

Marcos Vinicius Rezende Rehzende

🎯
Focusing
View GitHub Profile
@Rehzende
Rehzende / jobs.js
Last active December 4, 2019 19:23 — forked from maximilianschmitt/jobs.js
Automated MySQL backups to S3 with node.js
'use strict';
var mysqlBackup = require('./mysql-backup');
var schedule = require('node-schedule');
schedule.scheduleJob({ hour: 22, minute: 0 }, mysqlBackup);