mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
23 lines
841 B
JavaScript
23 lines
841 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
// NOTE es5 requires/exports to allow import from webpack
|
|
import nconfDefault from 'nconf';
|
|
import { join, resolve } from 'path';
|
|
|
|
const PATH_TO_CONFIG = join(resolve(__dirname, '../../../config.json'));
|
|
|
|
export default function setupNconf (file, nconfInstance = nconfDefault) {
|
|
const configFile = file || PATH_TO_CONFIG;
|
|
|
|
nconfInstance
|
|
.argv()
|
|
.env()
|
|
.file('user', configFile);
|
|
|
|
nconfInstance.set('IS_PROD', nconfInstance.get('NODE_ENV') === 'production');
|
|
nconfInstance.set('IS_DEV', nconfInstance.get('NODE_ENV') === 'development');
|
|
nconfInstance.set('IS_TEST', nconfInstance.get('NODE_ENV') === 'test');
|
|
|
|
// we need this in common and can't use nconf on the client.
|
|
process.env.CONTENT_SWITCHOVER_TIME_OFFSET = nconfInstance.get('CONTENT_SWITCHOVER_TIME_OFFSET') || 0;
|
|
}
|