Table of contents
- Deployment of the applications
- Publish Ilap.Analytics.Api .Zip file
- Publish Ilap.Analytics.BackgroundJobs .Zip file
- Publish Ilap.analytics.Ui.zip file
Deployment of the applications
Pre-requisites:
- Download and install Powershell (7+)
- Download and install Azure CLI tools for Powershell
Start Powershell and run the commands below.
#Login to azure, redirect to web browser az login
Download the latest version of the software from the Deployment Center in Ilap DataExchange:

Unzip the artifact and you should see the following folders:
| File name | Description |
|---|---|
| Ilap.analytics.Ui.zip | React Web Frontend application |
| Ilap.Analytics.Api.zip | Api used from Frontend application and GraphQL/Rest queries from consumers |
| ILAP.Analytics.BackgroundJob.PortalServer.zip | Api running background jobs |
| Ilap.Analytics.IaC.zip | Bicep script files including sample parameter files |
The following steps in the guide assumes that the file names are kept as is.
##Set the active subscription $SUBSCRIPTION = "your_subscription" az account set --subscription $SUBSCRIPTION
For deployment, we suggest using az webapp deploy using zipdeploy, for more information see this Microsoft learn article
Publish Ilap.Analytics.Api .Zip file
Run the commands in the powershell script below
$RESOURCE_GROUP = 'your_resource_group' $WEBAPP_NAME = 'app_name_for_api' az webapp deploy --type zip --resource-group $RESOURCE_GROUP --name $WEBAPP_NAME --src-path (Get-Item .\Ilap.Analytics.Api.zip).FullName
Publish Ilap.Analytics.BackgroundJobs .Zip file
Run the commands in the powershell script below
$RESOURCE_GROUP = 'your_resource_group' $WEBAPP_NAME = 'app_name_for_backgroundjobs' az webapp deploy --type zip --resource-group $RESOURCE_GROUP --name $WEBAPP_NAME --src-path (Get-Item .\ILAP.Analytics.BackgroundJob.PortalServer.zip).FullName
Publish Ilap.analytics.Ui.zip file
Run the commands in the powershell script below to deploy the Zipped file.
$RESOURCE_GROUP = 'your_resource_group' $WEBAPP_NAME = 'app_name_for_ui' az webapp deploy --type zip --resource-group $RESOURCE_GROUP --name $WEBAPP_NAME --src-path (Get-Item .\Ilap.analytics.Ui.zip).FullName
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article