This website is built using Docusaurus, a modern static website generator.
This project includes a development container configuration that provides a consistent, pre-configured development environment. To use it, you'll need Visual Studio Code with the Dev Containers extension and a container runtime, such as Docker or Podman, installed on your machine.
Once set up, open the project folder in VS Code and click "Reopen in Container" when prompted (or use the Command Palette: Dev Containers: Reopen in Container).
The devcontainer will automatically install all dependencies including Node.js, npm, TypeScript, and other required tools, ensuring you have everything needed to start developing immediately without manual setup.
npm installnpm startThis command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
npm buildThis command generates static content into the build directory and can be served using any static contents hosting service.
Using SSH:
USE_SSH=true npm deployNot using SSH:
GIT_USER=<Your GitHub username> npm 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.