webgme-rosmod
Version:
This repository contains ROSMOD developed for WebGME. ROSMOD is a web-based, collaborative, modeling and execution environment for distributed embedded applications built using ROS http://rosmod.rcps.isis.vanderbilt.edu
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;