add const

This commit is contained in:
Jeffrey Sun 2017-05-03 16:22:31 -07:00
parent a5b32e9d53
commit c61bbadb22
1 changed files with 1 additions and 1 deletions

2
run.js
View File

@ -1,7 +1,7 @@
const cluster = require('express-cluster');
const app = require('./server.js');
activePort = process.env.PORT || 3000;
const activePort = process.env.PORT || 3000;
cluster((worker) => {
app.listen(activePort, () => {