App Studio Enterprise is a template for building a standalone Appkit application for Fusion. All of the instructions are self contained in the README and relevant configuration files and will lead you through the simple and easy process of configuring an App Studio application. To get started, download the latest copy, and check out the instructions here.
Starting in Fusion 5.0, App Studio is no longer included in the Fusion UI. However, you can use App Studio Enterprise (ASE) to create apps in Fusion 5. See Deploy App Studio for instructions.
This article describes how to deploy App Studio in Fusion 5.
Starting in Fusion 5.11.0, Fusion has deprecated the Webapps service. As of Fusion 5.11.0, you should instead deploy App Studio manually.
In Fusion 5.x, the default FUSION_PORT value is 6764.
  1. Create UI (create a new App Studio project)
    curl -v -u USERNAME:PASSWORD -H 'Content-type: application/json' -X POST 'https://FUSION_HOST:FUSION_PORT/api/apps/APP_NAME/webapps' -d '{"id": "UI_ID","name": "UI_NAME","contextPath": "/UI_CONTEXT"}'
    
    
  2. Execute the command ./app-studio package to generate the app-studio-enterprise.war file. The file is created in the following location: /<$Application>/dist/app-studio-enterprise.war
  3. Deploy WAR (upload to webapps service)
    curl -v -u USERNAME:PASSWORD -X PUT -H 'Content-type: application/zip' 'https://FUSION_HOST:FUSION_PORT/api/apps/APP_NAME/webapps/UI_ID/war' --data-binary @app-studio-enterprise.war
    
  4. Go to https://FUSION_HOST:FUSION_PORT/webapps/UI_CONTEXT/.