Deployment - Doc - Azure Apps

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 8

ePay Core

Deployment Process

Date Version Author Notes


03-21-2023 1.0 Akhilesh Kumar First draft

Contents
1. Overview.............................................................................................................................................2
2. Azure Cloud Deployment.....................................................................................................................2
2.1.1. Overview..............................................................................................................................2
To publish your web app, you must first create and configure a new App Service that you can
publish your app to..............................................................................................................................2
2.1.2. Prerequisites........................................................................................................................2
2.1.3. Publish your web App..........................................................................................................2
2.1.4. Create a Resource group......................................................................................................2
2.3.5 Create a Web App.......................................................................................................................3
2.3.5 Publish the compiled code Azure Web App................................................................................6
1. Overview
This document will be describing the process of deploying the ePay core builds to Azure App
Services

2. Azure Cloud Deployment


2.1.1. Overview
To publish your web app, you must first create and configure a new App Service that
you can publish your app to.

App Service supports various versions of .NET apps, and provides a highly scalable, self- or

patching web hosting service. ASP.NET web apps are cross-platform and can be hosted on

Linux Windows.

2.1.2. Prerequisites
An Azure account with an active subscription.

2.1.3. Publish your web App.


You must first create and configure a new App Service to publish the app.

As part of setting up the App Service, you'll create:

 A new resource group to contain all of the Azure resources for the service.
 A new Hosting Plan that specifies the location, size, and features of the web server
farm that hosts your app.

2.1.4. Create a Resource group.

1. Enter Resource name and region.


2. Review and create.
2.3.5 Create a Web App

1. Search App Service in search bar and select.


2. Click on Create-to-create new Web App.
3. For Subscription, accept the subscription that is listed or select a new one
from the drop-down list.

4. For Resource group, select New or select from dropdown. In New resource
group name, enter epayCore and select OK.

5. Enter Web App Name EpayCoreDemo (In Name, enter a unique app name
that includes only the valid characters are a-z, A-Z, 0-9, and -.).
6. For Hosting Plan, select the values from drop down if no plan then you have to
create a hosting instance.

7. Go To App Service plans and click on create to create a new plan.

8. Select Resource group and plan. Enter a unique plan name.


9. Review and create.

2.3.5 Publish the compiled code Azure Web App

a) Go to deployment Center.
b) Click on FTPS Credentials.

c) To Connect, enter given endpoint and credentials to FileZilla.


d) Push your compiled code from local publish folder to wwwroot folder under site.

e) Once upload completed, go to overview, and click on Default domain to browse.

You might also like