service-profile
This configuration will specify the REST API base URL and the WebSocket address.
angular.module('app') .constant('AppConfig', { apiEndpoint: '/xos/api', websocketClient: '/' });
This configuration will contain branding information, such as title, logo and navigation items.
angular.module('app') .constant('StyleConfig', { projectName: 'CORD', favicon: 'cord-favicon.png', background: 'cord-bg.jpg', payoff: 'Your VNF orchestrator', logo: 'cord-logo.png', routes: [ { label: 'Slices', state: 'xos.core.slices' }, { label: 'Instances', state: 'xos.core.instances' }, { label: 'Nodes', state: 'xos.core.nodes' } ] });