This Template for runtime widget development and can be used to deploy runtime widget in application builder (written by Software AG Global Presales)
- Clone this repo:
git clone https://github.com/SoftwareAG/cumulocity-runtime-widget.git
- Install the dependencies:
cd cumulocity-runtime-widget
npm install
- Copy your widget's code into the src folder (or a subfolder).
- Reference your widget's Angular module in the public_api.ts (Comment out or delete the DemoWidgetModule)
/* Add your widget's module(s) here */
// export {DemoWidgetModule} from "./demo-widget/demo-widget.module";
export {YourWidgetModule} from "./your-widget/your-widget.module";
- Pick a unique contextPath for your widget, eg:
my-widget
- Edit the name and interleave values in the package.json to include the new contextPath:
Important: Leave the-CustomWidget
on the interleave option, and don't edit thedist/bundle-src/custom-widget.js
part
{
"name": "my-widget",
"interleave": {
"dist\\bundle-src\\custom-widget.js": "my-widget-CustomWidget",
"dist/bundle-src/custom-widget.js": "my-widget-CustomWidget"
},
}
- Edit the contextPath and applicationKey values in the cumulocity.json file to include the contextPath (Feel free to edit the name and icon):
{
"name": "My Widget",
"contextPath": "my-widget",
"key": "my-widget-application-key",
"contentSecurityPolicy": "default-src 'self'",
"icon": {
"class": "fa fa-puzzle-piece"
},
"manifest": {
"noAppSwitcher": true
}
}
- Build the widget:
npm run build
- After the build completes the
/dist
folder will contain awidget.zip
file, this is your deployable widget
Runtime widgets can be installed using Cumulocity Application Builder
These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the master project.
For more information you can Ask a Question in the TECHcommunity Forums.
You can find additional information in the Software AG TECHcommunity.