Tried and failed to push changes to bitbucket every 30min.

This commit is contained in:
jkaplon 2016-02-22 17:37:11 -05:00
parent 7db34b296c
commit 41268f431a

View File

@ -68,6 +68,19 @@ app.post('/', function(req, res){
res.status(204).send('POST received');
});
// This is broken due to permission error from bitbucket.
// Not sure how to auth container git user to bitbucket...comment it all out for now.
//setInterval(function() {
//// Push to bitbucker every 30min.
//var exec = require('child_process').exec;
//var cmd = 'cd note-data && git push';
//winston.info(cmd);
//exec(cmd, function(error, stdout, stderr) {
//if (error) { winston.error(error); }
//winston.info(stdout);
//});
//}, 30 * 60 * 1000);
app.listen(3000, function() {
winston.info("Started on PORT 3000");
});