Skip to content

Commit

Permalink
Merge branch 'master' into moment-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ozyx committed Jul 14, 2022
2 parents 6f50c18 + eedc523 commit 16bbc3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app.js
Expand Up @@ -12,7 +12,7 @@ const express = require('express');
const app = express();
const fs = require('fs');
const request = require('request');
const __DEV__ = process.env.NODE_ENV === 'development';
const __DEV__ = !process.env.NODE_ENV || process.env.NODE_ENV === 'development';

// Defaults
options.port = options.port || options.p || 8080;
Expand Down Expand Up @@ -89,3 +89,4 @@ app.get('/', function (req, res) {
app.listen(options.port, options.host, function () {
console.log('Open MCT application running at %s:%s', options.host, options.port);
});

0 comments on commit 16bbc3f

Please sign in to comment.