Hi,
I'm currently working on some low code apps and dom modules. Now i need to package those and install them into production.
- is there way to but an low code app / application folder on a git and package it from there including the dom structure?
- is there an other way to build the package from the agent itself?
Looking at : https://community.dataminer.services/enhance-your-ci-cd-pipeline-with-dataminer-net-tools/ and https://www.nuget.org/packages/Skyline.DataMiner.CICD.Tools.Packager#readme-body-tab
It works for dashboards visios etc but not applications.
Hi Gerwin,
I use the interactive automation script in the following GitHub repository to export a low code apps: https://github.com/SkylineCommunications/Low-Code-App-Extensions. In the later versions of the script, I believe DOM is included as well. The script generates a package which can installed via the Client test tool.
Hi Gerwin,
To package a low-code app, you can use the CompanionFiles folder, like it is used for example in this repo.
To automatically deploy a DOM structure, you will need to programmatically create it in the install script of a package. (Or in a separate script that is launched as a subscript in the install script)
Do you happen to have some examples for this as well?