a31043d661
* WIP #828 Added icons for main nav bar * WIP #828 Change active node using the icons on the left * WIP #828 Basic panel loading * WIP #828 Added visualizers for each option * WIP #828 Added active indicator of icons * WIP #828 Added Architecture card * WIP #828-Removed unnecessary MainViewControl * WIP #828 Added thumbnail support to arch editor * WIP #828 Added basic table for ArtifactIndex * WIP #828 Added artifact delete support * WIP #828 Removed unnecessary arg from completeTransaction * WIP #828 Added size info and download link * WIP #828 italicized the type * WIP #828 Added SidebarLayout * WIP #828 Updated nav viz for SideBarLayout * WIP #828 Removed panel loading from MainView * WIP #828 Updated breadcrumb header to hide root children * WIP #828 Updated Index views for each container in root * WIP #828 Added ArchIndex * WIP #828 Fixed the sidebar height * WIP #828 Fixed nav bar size; layout left value * WIP #828 Renamed Sidebar (layout/viz), added ForwardViz * WIP #828 Fixed highlight on refresh * WIP #828 Fixed overlap w/ dropdown menu * WIP #828 Added support for old projects * WIP #828 Fixed old project errors * WIP #828 Fixed flashing when clicking 'HOME' on the breadcrumb path * WIP #828 Fixed the text alignment for the exec container * WIP #828 Centered text * WIP #828 Added creation time to artifact index * WIP #828 Fixed code climate issues
66 linhas
3.8 KiB
JavaScript
66 linhas
3.8 KiB
JavaScript
// DO NOT EDIT THIS FILE
|
|
// This file is automatically generated from the webgme-setup-tool.
|
|
'use strict';
|
|
|
|
|
|
var config = require('webgme/config/config.default'),
|
|
validateConfig = require('webgme/config/validator');
|
|
|
|
// The paths can be loaded from the webgme-setup.json
|
|
config.plugin.basePaths.push(__dirname + '/../src/plugins');
|
|
config.plugin.basePaths.push(__dirname + '/../node_modules/webgme-simple-nodes/src/plugins');
|
|
config.visualization.layout.basePaths.push(__dirname + '/../src/layouts');
|
|
config.visualization.layout.basePaths.push(__dirname + '/../node_modules/webgme-chflayout/src/layouts');
|
|
config.visualization.decoratorPaths.push(__dirname + '/../src/decorators');
|
|
config.visualization.decoratorPaths.push(__dirname + '/../node_modules/webgme-easydag/src/decorators');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/nn');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/devTests');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/devUtilTests');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/pipeline');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/devPipelineTests');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/project');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/cifar10');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/xor');
|
|
config.seedProjects.basePaths.push(__dirname + '/../src/seeds/devProject');
|
|
|
|
|
|
|
|
config.visualization.panelPaths.push(__dirname + '/../node_modules/webgme-fab/src/visualizers/panels');
|
|
config.visualization.panelPaths.push(__dirname + '/../node_modules/webgme-breadcrumbheader/src/visualizers/panels');
|
|
config.visualization.panelPaths.push(__dirname + '/../node_modules/webgme-autoviz/src/visualizers/panels');
|
|
config.visualization.panelPaths.push(__dirname + '/../node_modules/webgme-easydag/src/visualizers/panels');
|
|
config.visualization.panelPaths.push(__dirname + '/../src/visualizers/panels');
|
|
|
|
|
|
config.rest.components['execution/logs'] = __dirname + '/../src/routers/JobLogsAPI/JobLogsAPI.js';
|
|
config.rest.components['job/origins'] = __dirname + '/../src/routers/JobOriginAPI/JobOriginAPI.js';
|
|
config.rest.components['execution/pulse'] = __dirname + '/../src/routers/ExecPulse/ExecPulse.js';
|
|
|
|
// Visualizer descriptors
|
|
config.visualization.visualizerDescriptors.push(__dirname + '/../src/visualizers/Visualizers.json');
|
|
// Add requirejs paths
|
|
config.requirejsPaths = {
|
|
'EllipseDecorator': 'node_modules/webgme-easydag/src/decorators/EllipseDecorator',
|
|
'EasyDAG': 'panels/EasyDAG/EasyDAGPanel',
|
|
'AutoViz': 'panels/AutoViz/AutoVizPanel',
|
|
'BreadcrumbHeader': 'panels/BreadcrumbHeader/BreadcrumbHeaderPanel',
|
|
'FloatingActionButton': 'panels/FloatingActionButton/FloatingActionButtonPanel',
|
|
'CHFLayout': 'node_modules/webgme-chflayout/src/layouts/CHFLayout',
|
|
'SimpleNodes': 'node_modules/webgme-simple-nodes/src/plugins/SimpleNodes',
|
|
'panels': './src/visualizers/panels',
|
|
'widgets': './src/visualizers/widgets',
|
|
'panels/EasyDAG': './node_modules/webgme-easydag/src/visualizers/panels/EasyDAG',
|
|
'widgets/EasyDAG': './node_modules/webgme-easydag/src/visualizers/widgets/EasyDAG',
|
|
'panels/AutoViz': './node_modules/webgme-autoviz/src/visualizers/panels/AutoViz',
|
|
'widgets/AutoViz': './node_modules/webgme-autoviz/src/visualizers/widgets/AutoViz',
|
|
'panels/BreadcrumbHeader': './node_modules/webgme-breadcrumbheader/src/visualizers/panels/BreadcrumbHeader',
|
|
'widgets/BreadcrumbHeader': './node_modules/webgme-breadcrumbheader/',
|
|
'panels/FloatingActionButton': './node_modules/webgme-fab/src/visualizers/panels/FloatingActionButton',
|
|
'widgets/FloatingActionButton': './node_modules/webgme-fab/src/visualizers/widgets/FloatingActionButton'
|
|
};
|
|
|
|
config.visualization.layout.default = 'SidebarLayout';
|
|
config.mongo.uri = 'mongodb://127.0.0.1:27017/deepforge';
|
|
validateConfig(config);
|
|
module.exports = config;
|