���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /lib/node_modules/forever/node_modules/broadway/lib/broadway/plugins/ |
/* * config.js: Default configuration management plugin which attachs nconf to App instances * * (C) 2011, Nodejitsu Inc. * MIT LICENSE * */ var nconf = require('nconf'); // // ### Name this plugin // exports.name = 'config'; // // ### function attach (options) // #### @options {Object} Options for this plugin // Extends `this` (the application) with configuration functionality // from `nconf`. // exports.attach = function (options) { options = options || {}; this.config = new nconf.Provider(options); // // Setup a default store // this.config.use('literal'); this.config.stores.literal.readOnly = false; }; // // ### function init (done) // #### @done {function} Continuation to respond to when complete. // Initalizes the `nconf.Provider` associated with this instance. // exports.init = function (done) { // // Remark: There should be code here for automated remote // seeding and loading // this.config.load(function (err) { return err ? done(err) : done(); }); };