DEV Community

Cover image for CREATE A STATIC HTML WEB APP BY USING AZURE CLOUD SHELL
Fred Chukwuma
Fred Chukwuma

Posted on

CREATE A STATIC HTML WEB APP BY USING AZURE CLOUD SHELL

  • Log in to Azure portal and locate cloud shell

Image description

  • Create a directory and give it a name and cd into the directory.

mkdir (directoryname)
cd (directoryname)

Image description

  • clone your repository. git clone *repository* and press enter

Image description

  • CREATE A WEB APP

  • cd into the location where the app is from.
    In my case, it's cd html-docs-hello-world

Image description

  • Run the command az to build our web app

Image description

And your static web app is created. You can copy the URL to test it.

Image description

Top comments (0)