DEV Community

Cover image for HOW TO CREATE AZURE APP SERVICE BY PUBLISHING A GAME WEB APP
Ajayi Daniel
Ajayi Daniel

Posted on

HOW TO CREATE AZURE APP SERVICE BY PUBLISHING A GAME WEB APP

A Web App inside an Azure Resource Group means deploying a web application as an Azure App Service and assigning it to a specific resource group, so it can be logically managed, monitored, and billed along with other related resources.
Talking about Web App is part of Azure App Service (Platform-as-a-Service).
It lets you host web applications, APIs, or backends without managing servers.
Supports languages like .NET, Java, Node.js, Python, PHP

STEP BY STEP IN CREATING WEB APP IN AZURE

STEP 1: Log in to Azure Portal

On the left menu, click Resource groups → Create.

Subscription: Choose your subscription.

Resource group name: e.g., MyResourceGroup.

Region: Pick closest to your users

RESOURCE

Imag

Step 2 Go to your app service in your azure

Imabdmn

web app

Step 3 fill the basic details
Subscription: Choose your Azure subscription.
Resource Group: Select an existing one

Name: Enter a unique name (this will be part of your app’s URL e.g. myapp.azurewebsites.net).

Publish: Choose whether you want to deploy Code or a Docker Container.

Runtime stack: Select your programming language (e.g., .NET, Java, Node.js, Python, PHP).

Region: Choose the datacenter closest to your users.

EMPTY

INFRASTRUCTURE

CREATEKD

Image GDJDK

RESOI

STEP 4 GO TO THE SEARCH BAR NOT SEARCH MENU AND SEARCH FOR ADVANCE TOOLS. After a few minutes, your Web App will be deployed.
You can go to Resource - Default URL to test.
click on DEBUG CONSOLE ON THE DRP DOWN CLICK ON CMD

ADVANCE

DEBUG

STEP 5 YOU GO TO SITE

ISITE

STEP 6 GO TO WWWROOT

ROOT

STEP 7 CLICK ON PENCIL ICON

PENCIL

STEP 8 PASTE THE CODE AND SAVE

ImageDJKDL

STEP 9 GO BACK TO THE WEP APP OVERVIEW AND CLICK ON DEFAULT DOMAIN TO CONFIRM YOUR CODE

WEB APP

STEP 10 BOOM MY GAME CODE WAS HOSTED

BOOM
https://kolawoleapp-f3e0hxgmfnhqfpfp.canadacentral-01.azurewebsites.net/

Top comments (0)