This website is built using Docusaurus, a modern static website generator.
This project uses Just as a command runner. Just is a handy way to save and run project-specific commands.
First, install project dependencies:
$ just installThis runs npm install behind the scenes.
$ just startThis command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
$ just deployThis command builds the website and deploys it to GitHub Pages.
If you prefer not to use Just, you can run the npm commands directly:
$ npm install$ npm start$ npm buildThis command generates static content into the build directory and can be served using any static contents hosting service.
$ npm run deployIf you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.