Product Selector

Fusion 5.12
    Fusion 5.12

    Deploy App Studio

    This article describes how to deploy App Studio in Fusion 5 or App Studio in Fusion 4.

    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 4.x, the default FUSION_PORT value is 8764. In Fusion 5.x, the default 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/.

    For detailed information about how to upload the file, see Deploying AppStudio Enterprise (ASE) WAR file.