Install ILAP Analytics

Modified on Tue, 12 Aug at 1:12 PM

Table of contents

Deployment of the applications

Pre-requisites:

  1. Download and install Powershell (7+)
  2. 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 nameDescription
Ilap.analytics.Ui.zipReact Web Frontend application
Ilap.Analytics.Api.zipApi used from Frontend application and GraphQL/Rest queries from consumers
ILAP.Analytics.BackgroundJob.PortalServer.zipApi running background jobs
Ilap.Analytics.IaC.zipBicep 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

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article