This is a tutorial shared as part of the #30DaysOfSWA series, to showcase the use of Azure Static Web Apps with the open-source Docusaurus static site generator from Meta.
- What is Docusaurus?
- Quickstart: setup classic site
- Configure: docusaurus.config.js
- Deploy: Azure Static Web Apps
- Customize: Themes & Plugins
Exercise
: Try Extending this demo- Add API to fetch content!
- Add Auth to tweet content!
- Add MDX component to page!
🎉 The site is live on Azure Static Web Apps
Follow the tutorial below - this will also be published on
on Day 12 of the series (May 12, 2022
) - which happens to be the first anniversary of Azure Static Web Apps becoming generally available. 🎂
- Docusaurus - documentation
- Azure Static Web Apps (SWA) - documentation
- #30DaysOfSWA - guide tour to SWA.
Docusaurus is an open-source project from Meta that helps you build, deploy, and maintain, open source project websites. It was rated one of the top 3 rising stars of JavaScript in 2021, under the static site generators category.
Read their documentation and visit their showcase for real-world examples of what you can build with docusaurus.
- Setup a Docusaurus site (
classic
theme) in a dedicated folder (www
) in repo. The command automatically installs the required packages and their dependencies.
npx create-docusaurus@latest www classic
- Let's see what was created for us. The output has been cleaned up for clarity.
ls -l www/
README.md
babel.config.js
blog/
docs/
docusaurus.config.js
node_modules/
package-lock.json
package.json
sidebars.js
src/
static/
- Let's preview the site locally, to validate this worked.
cd www
npx docusaurus start
[INFO] Starting the development server...
[SUCCESS] Docusaurus website is running at http://localhost:3000/.
You should see something like this - this is the default landing page for the scaffolded Docusaurus site.
- The dev server supports hot reloading. Try making a minor change to the site source - for example edit
docusaurus.config.js
and change thetitle
to "My Static Web Apps Site". You should see this in your site preview, instantly:
- You can now build a production-ready version of that site as follows. Note that the static files are generated in the build/ directory.
cd www/
npm run build
..
..
[SUCCESS] Generated static files in "build".
[INFO] Use `npm run serve` command to test your build locally.
Docusaurus is built using React - so you can use the same configuration settings for Docusaurus, when deploying to Azure Static Web Apps.
You have three options to get started:
- via browser with the Azure Portal quickstart
- via terminal with the Azure CLI quickstart
- via IDE with the VS Code Extension quickstart
If you prefer the first approach, click the button to go to the Azure portal, then follow the quickstart guidance, but using this project's details instead.
I'll use the Visual Studio Code extension to make this happen with just a few clicks.
The whole process happens within the VS Code window, and takes just a few minutes from start to finish - with guided prompts to help all the way. For convenience, I've documented it step-by-step with screenshots (images valid for VS Code ver 1.66.2).
- Install the Extension
Open Visual Studio Code (IDE) in the project folder for your repo. Install the Azure Static Web Apps extension by visiting this page and clicking "Install".
- Validate Extension Install
When extension is installed, you should see this window in your VS Code editor, confirming readiness for use.
- Find Azure Static Web Apps section under "Azure"
The extension's documentation page and its GitHub page both provide detailed walkthroughs - check those for the most current process for this. We'll start by clicking the Azure icon in the VS Code sidebar, then scrolling down till we see this Static Web Apps
section.
Click the "+" button to start the Create Static Web App workflow.
- Commit project changes if needed.
The "Create Static Web Apps" process will create (and commit) a GitHub actions workflow for you that will automate the build/deploy process for your site directly from your source on all future codebase changes.
So if you have current pending codebase changes it will first prompt you to commit them before it does its magic! Let's get that done!
- Follow the 5-step prompts
The extension walks you through the five steps shown below, each with defaults already filled in for you. Customize them as shown, for this project:
Screenshot | Step |
---|---|
Specify project name | |
|
Pick Azure region to deploy it in |
Pick framework used by app | |
Specify folder contaning site source | |
Specify folder where site gets built by default | |
- Sit back and relax!
In a few seconds, you'll see this alert - this indicates that the workflow is creating and committing the GitHub Actions build/deploy workflow YAML for you. 🎉
If you check your repository right now, you'll find the relevant commit and the activated Actions flow (labeled ci: add Azure Static Web Apps worfklow
) in progress.
You can also track the progress and configuration settings of your app right there in the VS Code Sidebar, under the Static Web Apps
section. Look for the project name, and unroll contents..
- Validate the deploy!
In a few second more, you'll get this alert:
Now, go to the sidebar section for your project, right-click the name to see the available menu options:
Click "Browse Site" to be taken to your live deployed Docusaurus website! That's it! A few clicks, customizing defaults - and you're done!
At this point, you can make any changes to the site source, commit them - and watch the site get rebuilt and deployed without any further action from you!
Here are some things to try:
- Customize styles or layout
- Explore plugins for SEO, Search etc.
- Try create/use MDX in content
I a few examples changes to the docusaurus.config.js
file to personalize the landing page content to reflect my needs.
And I updated the src/css/custom.css
file to reflect new theme colors for dark/light mode - and replaced the logo.svg
file.
Committing these changes should automatically rebuild and update the deployed site. Here is what they looked like in my local preview, before I committed the changes.
Light Mode | Dark Mode |
---|---|
🎉 Check it out: The site is live on Azure Static Web Apps