cluedin-widget
Version:
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
21 lines (19 loc) • 627 B
JavaScript
var node_env = process.env.NODE_ENV || 'development';
var modelNames = {
development: {
EntityWidgetConfiguration: 'dev_EntityWidgetConfiguration'.toLowerCase(),
Layout: 'dev_Layout'.toLowerCase(),
UserProfile: 'dev_UserProfile',
},
test: {
EntityWidgetConfiguration: 'test_EntityWidgetConfiguration'.toLowerCase(),
Layout: 'test_Layout'.toLowerCase(),
UserProfile: 'test_UserProfile',
},
production: {
EntityWidgetConfiguration: 'EntityWidgetConfiguration'.toLowerCase(),
Layout: 'Layout'.toLowerCase(),
UserProfile: 'UserProfile',
},
};
module.exports = modelNames[node_env];