is-critter/config.js
Vincent Batts ef4e816dac
All checks were successful
Basic Checking / Explore-Gitea-Actions (push) Successful in 50s
*: restructuring to make testing flow nicer
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2023-09-26 15:07:54 -04:00

15 lines
377 B
JavaScript

var config = module.exports;
var PRODUCTION = process.env.NODE_ENV === 'production';
const bole = require('bole');
config.express = {
port: process.env.EXPRESS_PORT || 3000,
ip: '127.0.0.1',
};
if (PRODUCTION) {
config.express.ip = '0.0.0.0';
bole.output({ level: 'debug', stream: process.stdout })
} else {
bole.output({ level: 'info', stream: process.stdout })
}