This commit is contained in:
neyric 2013-04-10 09:55:51 +02:00
Родитель 454eb0969f
Коммит e70563d536
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -2,5 +2,6 @@
module.exports = {
username: 'gh-username',
password: 'gh-password',
repo: 'user/repo'
repo: 'user/repo',
port: 3001
};

Просмотреть файл

@ -52,5 +52,5 @@ app.post('/update_ms_due_on', function(req, res) {
});
app.listen(3001);
console.log('Listening on port 3001');
app.listen(config.port);
console.log('Listening on port '+config.port);