@digital-enabler/dme-flow-editor
v2.0.1
Published
Digital Enabler - Flows editor microfrontend
Downloads
14
Readme
Flows Editor microfrontend
Digital Enabler - Flows editor microfrontend
Digital Enabler - Flows Editor microfrontend
The Flows Editor microfrontend shows a flow editor with a created or to create flow composition. The Flows Editor works within the DME tool in which it is mounted, and to work correctly it also needs the following microfrontends: Flows List.
NOTE: See here on how to mount a microfrontend and also here to more info about Microfrontend application for Digital Enabler.
Pre-requisites
Before you continue you need to
- have NPM installed
- have NodeJS installed
- have VueJS and Vue-CLI installed
- have a GitHub account
- use VisualStudio Code or IntelliJ Idea as your development IDE
Project management
Installation
Open a Terminal window in the project folder and go inside the app folder, then launch the command:
npm install
NOTE: When install finished, do not care about the warnings on the versions and vulnerability problems reported, and DO NOT launch the
npm audit fix
ornpm audit fix –force commands
Compiles and hot-reloads for development
npm run serve
Compiles and minifies for production
npm run build
Lints and fixes files
npm run lint
NOTE: Alternatively to the command indicated above you can use the VueUI browser interface
Configs file
To work properly the Flows Editor needs an editor-config.json file with this settings:
{
"mf": "Flows Editor",
"api": "https://[generic_api_location]/api",
"triggerProxyUrlLayout": "[protocol_current_url]//dme-proxy.[Tenant][domain_current_url]/mashups/[id_flow]" //(1)
}
- (1) The HTTP Trigger allows the users to invoke the mashup through simple HTTP requests. The mashup will be available with an URL with this pattern.
This json file must to be stored and setted as described here and also here.