Skip to content

Commit

Permalink
fix breaking typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzivenu committed Oct 2, 2018
1 parent 61728f0 commit f164b97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = function () {
const morgan = require('morgan');
const bodyParser = require('body-parser');
const cookieParser = require('cookie-parser');
const port = (process.env.NODE_ENV == 'production ' || process.env.NODE_ENV == 'staging') ? settings.PORT + 8001 : settings.PORT;
const port = (process.env.NODE_ENV == 'production' || process.env.NODE_ENV == 'staging') ? settings.PORT + 8001 : settings.PORT;

app.use(cookieParser(process.env.COOKIE_SECRET));

Expand Down

0 comments on commit f164b97

Please sign in to comment.