README / lib /config.ts
Rick Knowles
added skeleton container
94d5fc0
raw
history blame contribute delete
179 Bytes
import nconf from 'nconf';
const config = nconf
.argv()
.env('__')
.file('environment', '/sandbox/config.json')
.file('defaults', 'config.json');
export default config;