In order to setup the project, you have to install npm, yarn and node.
$ make installYou can verify yarn is properly installed using
yarn --versionIf this fails, please check manual instructions:
Dev Container instructions
This project includes a development container configuration for VS Code. To use it:
- Install Visual Studio Code and the Dev Containers extension.
- Open the project in VS Code.
- When prompted, reopen the project in the dev container.
- The container will automatically install dependencies and set up the environment.
- Go to the Start local server section.
Linux instructions
$ sudo apt install nodejs
$ sudo apt install npm
$ npm install yarnMacOS instructions
$ brew install node
$ brew install npm
$ npm install -g yarnWindows instructions
$ winget install OpenJS.NodeJS
$ npm install -g yarnTo start a local development server, run:
$ make startIf everything is properly installed, the command should open a browser window on http://localhost:3000/.
Most changes are reflected live without having to restart the server.
To generate static from the project that can be served using any static contents hosting service (like gh-pages).
$ make build