12 KiB
Deploy Abp Webapp to Azure App Service
In this document, you'll learn how to create and deploy your first abp web app to Azure App Service. App Service supports various versions of .NET apps, and provides a highly scalable, self-patching web hosting service. Abp web apps are cross-platform and can be hosted on Linux or Windows.
Prerequisites
- An Azure account with an active subscription. Create an account for free.
- A GitHub account Create an account for free.
Create a new ABP Framework application
Create repository on GitHub.com to create a new repository (keep all the default settings)
Open a command prompt and clone the repository into a folder on your computer
git clone https://github.com/your-username/your-repository-name.git
Check your dotnet version. Should be at least 3.1.x
dotnet --version
Install or update first the ABP CLI using a command line window
dotnet tool install -g Volo.Abp.Cli || dotnet tool update -g Volo.Abp.Cli
Open a comman prompt in the GitHub repository folder and create a new abp Blazor solution with the command below
abp new YourAppName -u blazor
Open a command prompt in the [YourAppName].DbMigrator project and enter the command below to apply the database migrations
dotnet run
Open a command prompt in the [YourAppName].HttpApi.Host project to run the API project
dotnet run
Navigate to the applicationUrl specified in the launchSettings.json file of the [YourAppName].HttpApi.Host project. You should get the Swagger window
Open a command prompt in the [YourAppName].Blazor folder and enter the command below to run the Blazor project
dotnet run
Navigate to the applicationUrl specified in the launchSettings.json file of the [YourAppName].Blazor project. You should get the ABP Framework Welcome window
Stop both the API and the Blazor project by pressing CTRL+C
Open a command prompt in the root folder of your project and add, commit and push all your changes to your GitHub repository
git add .
git commit -m initialcommit
git push
Create an SQL Database on Azure and change connection string in appsettings.json files
-
Login into the Azure Portal
-
Click on Create a resouce
-
Search for SQL Database
-
Click the Create button in the SQL Database window
-
Create a new resource group. Name it rg[YourAppName]
-
Enter [YourAppName]Db as database name
-
Create a new Server and name it [yourappname]server
-
Enter a serveradmin login and passwords. Click the OK button
-
Select your Location
-
Check Allow Azure services to access server
-
Click on Configure database. Go for the Basic version and click the Apply button
-
Click on the Review + create button. Click Create
-
Click on Go to resource and click on SQL server when the SQL Database is created
-
Click on Networking under Security left side menu
-
Select Selected networks and click on Add your client IP$ address at Firewall rules
-
Select Allow Azure and resources to access this seerver and save
-
Go to your SQL database, click on Connection strings and copy the connection string
-
Copy/paste the appsettings.json files of the [YourAppName].HttpApi.Host and the [YourAppName].DbMigrator project
-
Do not forget to replace {your_password} with the correct server password you entered in Azure SQL Database
Open a command prompt in the [YourAppName].DbMigrator project again and enter the command below to apply the database migrations
dotnet run
Open a command prompt in the [YourAppName].HttpApi.Host project and enter the command below to check your API is working
dotnet run
Stop the [YourAppName].HttpApi.Host by entering CTRL+C
Open a command prompt in the root folder of your project and add, commit and push all your changes to your GitHub repository
git add .
git commit -m initialcommit
git push
Set up the Build pipeline in AzureDevops and publish the Build Artifacts
-
Sign in into Azure DevOps
-
Click on New organization and follow the steps to create a new organisation. Name it [YourAppName]org
-
Enter [YourAppName]Proj as project name in the Create a project to get started window
-
Select Public visibility and click the Create project button
-
Click on the Pipelines button to continue
-
Click on the Create Pipeline button
-
Select GitHub in the Select your repository window
-
Enter Connection name. [YourAppName]GitHubConnection and click on Authorize using OAuth
-
Select your GitHub [YourAppName]repo and click Continue
-
Search for ASP.NET in the Select a template window
-
Select the ASP.NET Core template and click the Apply button
-
Add below commands block as a first step in the pipeline
- task: UseDotNet@2 inputs: packageType: 'sdk' version: '6.0.106'
-
Select Settings on the second task(Nugetcommand@2) in the pipeline
-
Select Feeds in my Nuget.config and type Nuget.config in the text box
-
Add below commands block to end of the pipeline
- task: PublishBuildArtifacts@1 displayName: 'Publish Artifact' inputs: PathtoPublish: '$(build.artifactstagingdirectory)' ArtifactName: '$(Parameters.ArtifactName)' condition: succeededOrFailed()
-
Click on Save & queue in the top menu. Click on Save & queue again and click Save an run to run the Build pipeline
-
When the Build pipeline has finished. Click on 1 published; 1 consumed
Create a Web App in the Azure Portal to deploy [YourAppName].HttpApi.Host project
-
Search for Web App in the Search the Marketplace field
-
Click the Create button in the Web App window
-
Select rg[YourAppName] in the Resource Group dropdown
-
Enter [YourAppName]API in the Name input field
-
Select code, .NET Core 3.1 (LTS) and windows as Operating System
-
Enter [YourAppName]API in the Name input field
-
Select .NET Core 3.1 (LTS) in the Runtime stack dropdown
-
Select Windows as Operating System
-
Select the same Region as in tthe SQL server you created in Part 3
-
Click on Create new in thet Windows Plan. Name it [YourAppName]ApiWinPlan
-
Click Change size in Sku and size. Go for the Dev/Test Free F1 version and click the Apply button
-
Click the Review + create** button. Click **Create** button
-
Click on Go to resource when the Web App has been created
Create a Release pipeline in the AzureDevops and deploy [YourAppName].HttpApi.Host project
-
Sign in into Azure DevOps
-
Click on [YourAppName]Proj and click on Releases in the Pipelines menu
-
Click on the New pipeline button in the No release pipelines found window
-
Select Azure App Service deployment and click the Apply button
-
Enter [YourAppName]staging in the Stage name field in the Stage winwow. Close window
-
Click + Add an artifact in the Pipeline tab
-
Select the Build icon as Source type in the Add an artifact window
-
Select Build pipeline in the Source (build pipeline) dropdown and click the Add button
-
Click on the Continuous deployment trigger (thunderbolt icon)
-
Set the toggle to Enabled in the the Continous deployment trigger window
-
Click + Add in No filters added. Select Include in the Type dropdown. Select your branch in the Build branch dropdown and close the window
-
Click on the little red circle with the exclamation mark in the Tasks tab menu
-
Select your subscription in the Azure subscription dropdown.
-
Click Authorize and enter your credentials in the next screens
-
After Authorisation, select the [YourAppName]API in the App service name dropdown
-
Click on the Deploy Azure App Service task
-
Select [YourAppName].HttpApi.Host.zip in the Package or folder input field
-
Click on the Save icon in the top menu and click OK
-
Click Create release in the top menu. Click Createto create a release>
-
Click on the Pipeline tab and wait until the Deployment succeeds
- Open a browser and navigate to the URL of your Web App
https://[YourAppName]api.azurewebsites.net
Create a Web App in the Azure Portal to deploy [YourAppName].Blazor project
-
Login into the Azure Portal
-
Click on Create a resouce
-
Search for Web App in the Search the Marketplace field
-
Click the Create button in the Web App window
-
Select rg[YourAppName] in the Resource Group dropdown
-
Enter [YourAppName]Blazor in the Name input field
-
Select .NET Core 3.1 (LTS) in the Runtime stack dropdown
-
Select Windows as Operating System
-
Select the same region as the SQL server you created in Part 3
-
Select the [YourAppName]ApiWinPlan in the Windows Plan dropdown
-
Click the Review + create button. Click Create button
-
Click on Go to resource when the Web App has been created
-
Copy the URL of the Blazor Web App for later use
https://[YourAppName]blazor.azurewebsites.net
Change the Web App configuration for the Azure App Service
Copy the URL of the Api Host and Blazor Web App. Change appsettings.json files in the Web App as follows images.
Add an extra Stage in the Release pipeline in the AzureDevops to deploy [YourAppName].Blazor project
-
Go to the Release pipeline in Azure DevOps and click Edit
-
Click the + Add link and add a New Stage
-
Select Azure App Service deployment and click the Apply button
-
Enter BlazorDeployment in the Stage name input field and close the Stage window
-
Click on the little red circle with the exclamation mark in the BlazorDeployment stage
-
Select your subscription in the Azure subscription dropdown
-
Select your Blazor Web App in the App service name dropdown
-
Click on the Deploy Azure App Service task
-
Select [YourAppName].Blazor.zip in the Package or folder input field
-
Click Save in the top menu and click on the OK button after
-
Click Create release in the top menu and click on the Create button





















