UNPKG

scriptremote

Version:

Message server providing secure remote access to scripted applications from a browser UI

36 lines (30 loc) 973 B
'use strict'; // From mean.js boilerplate /** * Module dependencies. */ var glob = require('glob'), chalk = require('chalk'); /** * Module init function. */ module.exports = function() { /** * Before we begin, lets set the environment variable * We'll Look for a valid NODE_ENV variable and if one cannot be found load the development NODE_ENV */ glob('./config/env/' + process.env.NODE_ENV + '.js', { sync: true }, function(err, environmentFiles) { if (!environmentFiles.length) { if (process.env.NODE_ENV) { console.error(chalk.red('No configuration file found for "' + process.env.NODE_ENV + '" environment using development instead')); } else { console.error(chalk.red('NODE_ENV is not defined! Using default development environment')); } process.env.NODE_ENV = 'development'; } else { console.log(chalk.black.bgWhite('Application loaded using the "' + process.env.NODE_ENV + '" environment configuration')); } }); };