Skip to content

Upload App to an IEM

You can import an standalone application to the IEM in 2 locations:

  • App Projects: App will be available in the App Projects section and its lifecycle can be managed by the user who imported the app. After creating a Standalone application you can upload it to the IEM app-project.
  • Catalog: App will be directly available in the Catalog of the IEM. After creating a Standalone application you can export the application version as .app file and upload it to the IEM catalog.

Import to App Projects

You can import the standalone "my cool app3" to the App Projects section with the following command:

$ iectl publisher app upload project \
        --applicationname "my cool app3" \ 
        --versionnumber "1.0.0" \
        --webaddress "www.webaddress.com" \
        --changelogs "Change logs" \
        --projectid "unique id of Project(on IEM) in which you want to import this application" \
        --categoryid "unique id of Catagory(on IEM) to which you want to assign your application" \

NOTICE

Direct .app file upload is not possible to IEM app-project.

Import to Catalog

You can import the standalone "my cool app4" to the Catalog with the following command:

$ iectl publisher app upload catalog \
        --appname "my cool app4" \ 
        --versionnumber "1.0.0"