π Imagine: merging a Pull Request is all it takes to automatically deploy your static or single-page app to a secure, dynamically scaled, and globally distributed network with integrated API support β thatβs the promise of Azure Static Web Apps.
Announced during Microsoft Build 2020, Azure Static Web App is a service that automatically builds and deploys static web apps to Azure from a GitHub repository. The features that I find the most interesting are:
I gave it a try and I have to say: itβs pretty cool! π Iβll have the step-by-step on how to configure and deploy an existing site to Azure Static Web Apps below. The steps seem lengthy but there are really just a few basic steps:
If you want to create a brand new site from scratch, see the official documentation docs.microsoft.com.
As part of the #100DaysOfCode challenge, Iβve been working on a React site that hosts various programming utilities like encoders/decoders, UUID generator, test data generators, etc. Itβs a perfect candidate to test out Azure Static Web Apps.
First, log into Azure Portal and click βCreate a resourceβ, then search for βAzure static webβ. You should see Static Web App (Preview) in the search results. Click on it.
Click Create.
Fill out the Basics tab. Most of the fields are self-explanatory. Click βSign in with GitHubβ.
The page expands, showing a few more fields for GitHub. Fill out with the info for your appβs GitHub repository, and choose βNext: Build>β.
On the Build tab, fill in the appropriate values for βApp locationβ, βApi locationβ, and βApp artifact locationβ. Then click βReview + createβ.
βApp locationβ is the root folder for your app. Itβs typically / or /app. βApi locationβ should be left blank if you are unsure. βApp artifact locationβ is the folder to your build.
Review your settings and click Create. Wait a few seconds for the deployment to complete. During the initial deployment, Static Web Apps automatically creates a GitHub Action for you (in the file named azure-static-web-apps-<id>.yml and adds it to your chosen branch. When itβs all done you should see this page:
Click βGo to resourceβ to go to the resource page for your new Static Web App. On the Overview page, you will see a link to your web app.
Click on βGitHub Action runsβ to go over to your GitHub repo and view the status of your deploy Action. You should see a new Action named βci: add Azure Static Web Apps workflow fileβ. It should take about two minutes to run.
Switch to the Code tab and see that a new Action file was added to your repo. This is what tells GitHub to automatically build and deploy your app to Azure Static Web Apps.
Itβs time to bring up our web site on Azure Static Web Apps!
Go back to Azure Portal and click on the URL to your app to bring it up. The below screenshot shows my app now running on Azure Static Web Apps with its own unique secure URL.
Adding a custom domain name is pretty straightforward. On Azure Portal, go to the home page of your Static Web App, and click on βCustom domainsβ, then Add.
On the βAdd custom domainβ page, note the Azure host name for your site. You will need to create a DNS CNAME record to point your custom domain to that Azure host name. The specifics of this part depends on your domain registrar or web hosting provider. For me, the domain name chinhdo.com is hosted on Pair Networks so I went to their control panel and created there CNAME record there.
After you have created your DNS CNAME record, go back to Azure Portal and paste your custom domain into the βCustom domainβ box, then click Validate.
Depending on your DNS settings it can take up to 48 hours for a new DNS record to propagate. In practice it should not take more than an hour. In my case it took about 15 minutes. If you get an error in the next step, just wait some time and try again.
After you get the βValidation succeededβ message, click Add to add your custom domain to your Static Web App. This step took about one minute for me
And now I am able to get to the web site via the custom domain name https://programmers-toolbox.chinhdo.com:
To handle server routes, you need a routes.json file to your build folder. In my React app, I added it to the /public folder.
Server routing is required to handling βhardβ navigation to routes that are handled by your single page app. In my case, I have a React route for /uuid which works fine when you navigate there within the app. But you will get a 404 if you go there directly, or do a browser refresh while you are on that page. Server routes take care of that. See the official docs for more info.
{
"routes": [
{
"route": "/uuid",
"serve": "/index.html",
"status": 200
},
{
"route": "/encode",
"serve": "/index.html",
"status": 200
},
{
"route": "/login",
"serve": "/index.html",
"status": 200
}
]
}
I did run into one problem with a test site. The initial deployment for it did not happen automatically. I verified that the *.yml file was created but the Action never got executed. I was able to get around that by pushing a βdummyβ change to the repository.
Azure Static Web Apps looks to be a game changer. You are getting important features like SSL, dynamic scaling, global distribution, and GitHub deployment all in one easy-to-use package. Once configured, deploying your changes is as simple as pushing code to your GitHub repository. In fact I have deployed several new versions of the app over the past few days and it worked perfectly fine each time.
If cost is reasonable, I would definitely use it on a permanent basis for my single-page/static sites. Currently Azure Static Web Apps is in preview and is free, but things may change after it goes out of preview.
What do you think about Azure Static Web Apps? I would love to hear your thoughts. Let me know here in the Comments section or on Twitter!
To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…
kubectl exec -it <podname> -- sh To get a list of running pods in the…
# Create a soft symbolic link from /mnt/original (file or folder) to ~/link ln -s…
git config --global user.name "<your name>" git config --global user.email "<youremail@somewhere.com>" Related Commands Show current…
TypeScript/JavaScript function getLastMonday(d: Date) { let d1 = new Date(d.getFullYear(), d.getMonth() + 1, 0); let…
I had to do some SMTP relay troubleshooting and it wasn't obvious how to view…
View Comments
Hi,
I'm trying to use Azure Static Website(preview) to deploy my hexo website. I followed instructions on this article and when I try to add my cname configured custom domain name for this static website. It took me a very long time to see this info in activity logs:
- Create Static Site Custom Domain
Accepted
14 hours ago
- Create Static Site Custom Domain
Started
14 hours ago
But I never see a successfully complete creation info in logs. and when I try to add that domain one more time, it tells me:
`Request Envelope is invalid. Please ensure the custom domain is not linked to another site.`
Have you ever encountered this problem? thanks!
I have the same issue
Hi Yu/Bui: No I did not run into the issue you described. I did have to wait about 30 minutes or so for the DNS change to propagate. Chinh