Add Heroku-specific stuff
This commit is contained in:
parent
4ba2b02815
commit
a166873e66
|
@ -418,8 +418,8 @@ Server.prototype.generateHistoryPage = function (req) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Server.prototype.start = function () {
|
Server.prototype.start = function () {
|
||||||
this.http.listen(settings.port, () => {
|
this.http.listen((process.env.PORT || settings.port), () => {
|
||||||
console.log('Started server on port ' + settings.port);
|
console.log('Started server on port ' + (process.env.PORT || settings.port));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue