我正在尝试使用GitHub webhooks和node.js构建自动代码提取服务。 当我昨天运行这个代码时,它就像一个魅力,并将正确的存储库拉到正确的文件夹,但今天它开始无声地失败。它适用于我的开发机器。
如瓷砖中所述,我正在使用IISNode在IIS下运行它,但我开始怀疑是否应该在没有IIS的情况下托管它。这是我写的代码。
var exec = require('child_process').exec,
http = require('http'),
path = require('path'),
config = require('./config'),
server = http.createServer(function(req, res) {
var incomingData = '';
req.on('data', function(data) {
incomingData += data;
});
req.on('end', function() {
incomingData = JSON.parse(incomingData);
var repoName = incomingData.repository.name;
var pullPath = path.resolve('..', repoName);
console.log(pullPath);
var body = "<html><body>stdout: ";
exec('cd ' + pullPath + ' && git pull', function (error, stdout, stderr) {
if( error !== null ){
console.log(error);
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
body += stdout;
});
body += "</body></html>";
res.writeHead(200, {
'Content-Length': body.length,
'Content-Type': 'text/plain' });
res.write(body, 'utf8');
res.end();
});
}).listen(config.web.port);
为什么突然停止工作?
编辑: 我在issnode的github页面上打开了一个问题。 https://github.com/tjanczuk/iisnode/issues/352
edi3: 看起来我有问题... / app.js / debug /它获得标题,但似乎永远等待从服务器获得响应。
答案 0 :(得分:0)
我弄清楚出了什么问题,我没有为IISNode保存github凭据。我通过将主页指向我的Admin-user(使用github ssh密钥)来“破解”它。
我通过更多的谷歌搜索弄明白了,并意识到我正在产生许多似乎无法解决的git实例(他们正在等待我输入的密码)。