DEV Community

Cover image for Building Star Wars Crawler with Azure Static Web Apps - Part 3
Glaucia Lemos for Microsoft Azure

Posted on

Building Star Wars Crawler with Azure Static Web Apps - Part 3

Deploying the Application to Azure Static Web Apps

We have our application working locally now, nothing better than making it available to the world so that we can show everyone what we have developed.

In this case we are going to use Azure Static Web Apps.

But firstly, what is Azure Static Web Apps? Azure Static Web Apps is a service that automatically builds and deploys full stack web apps to Azure from a code repository. Belo you can see the whole workflow around the ASWA:

image-aswa-workflow.png

And we're going to deploy our application using directly in the Visual Studio Code using the extension:

Open up VS Code and let's get into the Azure Portal right there! Click on the Azure icon and sign in with your Azure account:

Screen-Shot-04-18-22-at-01-42-PM.png

Go to the Create Static Web App with a + sign:

Screen-Shot-04-18-22-at-01-57-PM.png

Now, follow these steps:

  1. Include a app name. Ex.: intro-starwars-app
  2. Select a region for hosting our app.
  3. Now, choose the build preset to configure default project structure. In this case we are not using frameworks. Just JavaScript, HTML and CSS. In this case choose: custom
  4. Now we need to include the location of our application. For our application will be: /public
  5. The final step is to include the location of our build output. In this case, remove build and leave blank

A box will open, click on the link: Open Actions in GitHub

Screen-Shot-04-18-22-at-04-44-PM.png

Once you click it, you will be redirected to the GitHub Actions repository page showing the entire build workflow (C.I and C.D).

Screen-Shot-04-18-22-at-04-52-PM.png

Now let's return to the Azure Static Web Apps Extension and right click on Browser Site

Screen-Shot-04-18-22-at-04-54-PM.png

And see the app in action!

star-wars-intro.gif

If you want, you can see the deployed application HERE - Star Wars Intro App

Final Words

Today we have learned how to create a Star Wars Intro App using: HTML, CSS and JavaScript/Node.js. And finally we hosted our application using the Azure Static Web Apps service.

Here I would like to let some good resources about Azure Static Web Apps & GitHub Actions:

And to stay on top of several other news, be sure to follow me on Twitter!

Twitter

And subscribe on my Youtube Channel - Glaucia Lemos to see weekly new videos about Web Development, Node.js & JavaScript!

Screen-Shot-12-31-20-at-01-06-AM.png

See you! 😍

Top comments (1)

Collapse
 
sitespeed profile image
Tim Moss

Just in case anyone else has the same issue.

I hit a strange and somewhat nasty problem working through this example.
At some point, when I cut and paste the intro.js file from here into VS Code,
the text got subtly reformatted.

Every line of the code was prefixed with a single space

  • maybe to line up with the */ at the end of the "header" comment.

Unfortunately this meant that some of the code didn't work/trigger as expected.
e.g. the star-field worked, but the start button, scrolling/crawling of the text did not!

Since the only diffence in the code was this preceding space on each line it was pretty tricky to spot!
Was using "Inspect" function in Edge comparing my SWA and Glaucia's working SWA

  • seaping between 2 tabs showed the JS code moving left and right by once space (otherwise identical)

Not sure if this is a common thing or down to some extension I have in VS Code trying to be a bit too clever!

Thanksfully it was easy to fix once I found it.

  • Turn on "column editing mode" in VS Code
  • Select the "column" of unwanted spaces
  • Delete then save the file
  • recommit and syncrhonise
  • Boom! the static web app worked as expected