webgme-gridlabd
Version:
Metamodel, visualization, and model generators for gridlab-d in WebGME. Allows graphical model-driven development and simulation of power grids and power generation / transmission / distribution / storage systems.
15 lines (12 loc) • 400 B
JavaScript
/*jshint node: true*/
/**
* @author lattmann / https://github.com/lattmann
* @author pmeijer / https://github.com/pmeijer
*/
;
var env = process.env.NODE_ENV || 'default',
configFilename = __dirname + '/config.' + env + '.js',
config = require(configFilename),
validateConfig = require('webgme/config/validator');
validateConfig(configFilename);
module.exports = config;