is-critter/config.js

20 lines
534 B
JavaScript
Raw Normal View History

const config = module.exports
config.PRODUCTION = process.env.NODE_ENV === 'production'
const bole = require('bole')
config.express = {
port: process.env.EXPRESS_PORT || 3000,
ip: '127.0.0.1'
}
if (config.PRODUCTION) {
config.express.ip = '0.0.0.0'
config.db_path = 'db/results.db'
config.session_token = process.env.SESSION_TOKEN
bole.output({ level: 'info', stream: process.stdout })
} else {
config.db_path = ':memory:'
config.session_token = 'cat bag'
bole.output({ level: 'debug', stream: process.stdout })
}