Load config files from the CONFIG environment variable.
Node config is very simple. You set the filepath to the CONFIG
environment variable and settings-module will load it for you.
// config.jsexports.API_KEY='TEST';// lib/index.js// process.env.CONFIG = ./config.jsconstConfig=require('settings-module');Config.get('API_KEY');